/
redly
/
reactposts
Обзор
Документация
Войти
/
redly
/
reactposts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/Form.tsx
15 строк
275 B
Redlyweb
feat: add form and button components, complete navigation, add login page
25 июн 2024, 15:29
25 июн 2024, 15:29
6b08f17
Код
Авторство
О чём код?
import styled from "styled-components" const StyledForm = styled.form` display: flex; flex-direction: column; width: 50%; ` export default function Form({children}: {children: React.ReactNode}) { return ( <StyledForm> {children} </StyledForm> ) }