/
Necoray
/
tactic-hack
Обзор
Документация
Войти
/
Necoray
/
tactic-hack
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/components/Form.jsx
31 строка
561 B
Роман Тихонов
files uploaded
23 янв 2025, 23:23
23 янв 2025, 23:23
1031718
Код
Авторство
О чём код?
import * as shared from '../shared' export default function Form({containerProps, children, ...props}) { const style = { margin: "auto", width: '400px', color: shared.baseColor, background: shared.baseColor, } const containerStyle = { margin: 20, display: 'flex', justifyContent: 'center', flexDirection: 'column', gap: '20px' } return ( <form className="bordered" {...props} style={style}> <div style={containerStyle} {...containerProps}> {children} </div> </form> ); }