mirror of
https://github.com/MaggieAppleton/digital-gardeners.git
synced 2025-12-14 09:08:43 +01:00
refactored side menu
This commit is contained in:
parent
cc24e63ade
commit
5721add857
4 changed files with 73 additions and 52 deletions
|
|
@ -1,7 +1,13 @@
|
|||
import '../styles/tailwind.css'
|
||||
import "../styles/tailwind.css";
|
||||
import Sidemenu from "../components/Sidemenu";
|
||||
|
||||
function MyApp({Component, pageProps}) {
|
||||
return <Component {...pageProps} />
|
||||
function MyApp({ Component, pageProps }) {
|
||||
return (
|
||||
<div className="flex flex-row">
|
||||
<Sidemenu />
|
||||
<Component {...pageProps} />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
export default MyApp;
|
||||
export default MyApp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue