2022-02-24 22:30:34 +00:00
|
|
|
import React, { StrictMode } from 'react'
|
|
|
|
import { render } from 'react-dom'
|
|
|
|
|
2022-03-03 15:20:23 +00:00
|
|
|
import { Community, lightTheme } from '@status-im/react'
|
2022-02-23 14:32:08 +00:00
|
|
|
|
|
|
|
const App = () => {
|
2022-03-15 12:47:17 +00:00
|
|
|
return <Community publicKey="<YOUR_COMMUNITY_KEY>" theme={lightTheme} />
|
2022-02-23 14:49:00 +00:00
|
|
|
}
|
2022-02-23 14:32:08 +00:00
|
|
|
|
|
|
|
render(
|
|
|
|
<StrictMode>
|
|
|
|
<App />
|
|
|
|
</StrictMode>,
|
|
|
|
document.getElementById('root')
|
2022-02-23 14:49:00 +00:00
|
|
|
)
|