/
skitchen
/
Portal
Обзор
Документация
Войти
/
skitchen
/
Portal
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/ui/Stack/VStack/VStack.tsx
12 строк
316 B
nikita
Refactor layout components and remove unnecessary scss styles
27 окт 2023, 10:52
27 окт 2023, 10:52
8049ddd
Код
Авторство
О чём код?
import { Flex, FlexProps } from '../Flex/Flex'; type VStackProps = Omit<FlexProps, 'direction'> export const VStack = (props: VStackProps) => { const { children, align = 'start' } = props; return ( <Flex {...props} direction="column" align={align}> {children} </Flex> ); };