When I see sample react component usecase,for example following is listed.
But I have questions.<App /> means some react component and it has some html element.
But regarding <Theme></Theme> , it is also react component. but why this is different writing form from <App />? what is the difference between them?
<BrowserRouter>
<Theme>
<App />
</Theme>
</BrowserRouter>
I am totally novice of React,and search them but I still have unclear about it. If someone has materials relating that. Will you please let me know
thanks