svg-layout-designer-react/src/Components/SidebarRow/SidebarRow.tsx
2022-07-30 19:56:41 +02:00

12 lines
173 B
TypeScript

import * as React from 'react';
interface ISidebarRowProps {
}
export const SidebarRow: React.FC<ISidebarRowProps> = (props) => {
return (
<div>
</div>
);
};