mue/src/features/welcome/components/Layout/Panel.jsx

8 lines
137 B
JavaScript

const Panel = ({ children, type }) => (
<section className={type}>
{children}
</section>
);
export { Panel as default, Panel };