mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 08:53:25 +01:00
8 lines
No EOL
176 B
JavaScript
8 lines
No EOL
176 B
JavaScript
import React from 'react';
|
|
import ls from './BottomStack.less';
|
|
|
|
export default function BottomStack({children}) {
|
|
return <div className={ls.root}>
|
|
{children}
|
|
</div>;
|
|
} |