mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-07 00:45:08 +01:00
15 lines
207 B
JavaScript
15 lines
207 B
JavaScript
import React from 'react';
|
|
|
|
import ls from './Stack.less'
|
|
|
|
export default function Stack({children}) {
|
|
return <div className={ls.root}>{children}</div>
|
|
}
|
|
|
|
Window.defaultProps = {
|
|
type: 'neutral',
|
|
};
|
|
|
|
|
|
|
|
|