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

6 lines
132 B
React
Raw Normal View History

const Content = ({ children }) => {
2024-03-19 21:45:17 +00:00
return <div className="content">{children}</div>;
};
2024-03-19 21:45:17 +00:00
export { Content as default, Content };