Answer the question
In order to leave comments, you need to log in
How to set different css properties for different pages in React?
How to set different css properties on separate pages in React?
For example, the Home page should look like this:
body {
background: white;
}
body {
background: blue;
}
Answer the question
In order to leave comments, you need to log in
Well, where do you render the body tag there and set modifiers depending on the route or other parameters.
Or like this:
<Layout bodyStyle={styles}>
<Component/>
</Layout>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question