import styled from "styled-components"

const Form = styled.form`
  margin: 0;

  &::after {
    content: "";
    display: block;
    clear: both;
  }
`

export default Form
