mirror of
https://github.com/status-im/wakuconnect-chat-sdk.git
synced 2025-02-21 16:28:25 +00:00
* rename community to with-parcel * add with-next example * update example names and unify configs * add vite example * use new JSX transform in examples * disable necessary eslint rules for examples * add next output to prettierignore * add remix example * update engines in package.json * remove readme from with-next example * update vite example * update with-next example * remove with-remix example
12 lines
188 B
TypeScript
12 lines
188 B
TypeScript
import { StrictMode } from 'react'
|
|
import { render } from 'react-dom'
|
|
|
|
import { App } from './app'
|
|
|
|
render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>,
|
|
document.getElementById('root')
|
|
)
|