Showing
1 changed file
with
21 additions
and
0 deletions
front/src/Components/Form.js
0 → 100644
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 | +}; |
-
Please register or login to post a comment