mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-05-22 18:02:03 +00:00
12 lines
141 B
JavaScript
12 lines
141 B
JavaScript
import React from 'react';
|
|
|
|
const Layout = ({ children }) => {
|
|
|
|
return (
|
|
<div>
|
|
{children}
|
|
</div>)
|
|
};
|
|
|
|
export default Layout;
|