plebdevs/src/components/Layout.js

12 lines
141 B
JavaScript
Raw Normal View History

2024-02-11 00:36:25 -06:00
import React from 'react';
const Layout = ({ children }) => {
2024-03-13 17:45:55 -05:00
return (
<div>
{children}
</div>)
2024-02-11 00:36:25 -06:00
};
export default Layout;