11 lines
207 B
React
11 lines
207 B
React
|
import styled from "styled-components";
|
||
|
|
||
|
const FormComponentStyled = styled.form`
|
||
|
display: flex;
|
||
|
width: 100%;
|
||
|
flex-direction: column;
|
||
|
align-items: flex-start;
|
||
|
`;
|
||
|
|
||
|
export default FormComponentStyled;
|