I am building a react app with tailwind css . I would like to use 3 main required components for all pages (Navbar,Left Part and Right Part) , also I would like to use 1 conditional component which change each page (Middle Part of Website)
This is my app . Red ones is my main components that I would like to use all pages , blue one is up to pages ( For example "/" , "/home" , "/dashboard" etc ...)
Could u help me about it ? Is it possible ? Thanks for help .
function App() {
return (
<div>
<Navbar/>
<div className="flex justify-between max-w-8xl sm:px-2 md:px-4">
<Left/>
<Middle/> // This will be "/" routes
<Right/>
</div>
</div>
);
}
This is my app.js . I wrote this code but it did not work (tailwind style) clearly. Also I dont know it is true or not .