fix: maybe fixed open tags
parent
7edcc74133
commit
5adf51d1ab
@ -1,4 +1,10 @@
|
||||
import { hydrate } from 'preact'
|
||||
import { App } from './App'
|
||||
import { ClientContext } from './hooks'
|
||||
|
||||
hydrate(<App />, document.body)
|
||||
hydrate(
|
||||
<ClientContext.Provider value={true}>
|
||||
<App />
|
||||
</ClientContext.Provider>,
|
||||
document.body
|
||||
)
|
||||
|
Loading…
Reference in New Issue