jsketcher/modules/ui/components/Stack.jsx
2018-01-30 19:41:05 -08:00

11 lines
160 B
JavaScript

import React from 'react';
import ls from './Stack.less'
export default function Stack({children}) {
return <div className={ls.root}>{children}</div>
}