mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-08 09:24:18 +01:00
11 lines
160 B
JavaScript
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>
|
|
}
|
|
|
|
|
|
|
|
|