sdy

remove form component

import React from "react";
import styled from "styled-components";
const FormContainer = styled.div`
display: flex;
`;
const Form = styled.form`
display: flex;
flex-direction: column;
padding: 10px;
border-radius: 10px;
`;
export default () => {
return (
<FormContainer>
<Form />
</FormContainer>
);
};