sdy

create Form component

1 +import React from "react";
2 +import styled from "styled-components";
3 +
4 +const FormContainer = styled.div`
5 + display: flex;
6 +`;
7 +
8 +const Form = styled.form`
9 + display: flex;
10 + flex-direction: column;
11 + padding: 10px;
12 + border-radius: 10px;
13 +`;
14 +
15 +export default () => {
16 + return (
17 + <FormContainer>
18 + <Form />
19 + </FormContainer>
20 + );
21 +};