mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
7 lines
No EOL
229 B
JavaScript
7 lines
No EOL
229 B
JavaScript
import React from 'react';
|
|
import ls from './Row.less';
|
|
import cx from 'classnames';
|
|
|
|
export default function Row({className, children, ...props}) {
|
|
return <div className={cx(ls.root, className)} {...props} >{children}</div>;
|
|
} |