mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-23 04:41:14 +00:00
Add id
to App
component (#880)
Fixes #204. There's already a style block for `#app` so this just sets the id so those styles are applied.
This commit is contained in:
parent
afeb64009b
commit
62139df0c3
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ export class App extends Component<any, any> {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Provider i18next={i18n}>
|
<Provider i18next={i18n}>
|
||||||
<div>
|
<div id="app">
|
||||||
<Theme defaultTheme={siteView.local_site.default_theme} />
|
<Theme defaultTheme={siteView.local_site.default_theme} />
|
||||||
{siteView.site.icon.match({
|
{siteView.site.icon.match({
|
||||||
some: icon => (
|
some: icon => (
|
||||||
|
|
Loading…
Reference in a new issue