React + Vite Builds -what do you style in index.css and app.css?

Someone refresh my little pea brain.. app.jsx is where we import all of our components into, which then gets pushed into main.jsx and through that, pushed to our html file and blasted onto the client, yay... so our global styling is kept into index.css? what styling would we put into the app.css, in that case? Since app.jsx is going to be hosting all of our components, and it'll generally look like the below, what would you style in app.css for the most part?
function App() {
return (
<div>
<Navbar />
<Login />
<InsertComponentHere />
</div>
);
}
function App() {
return (
<div>
<Navbar />
<Login />
<InsertComponentHere />
</div>
);
}
No description
0 Replies
No replies yetBe the first to reply to this messageJoin