status-web/examples/with-vite/src/app.tsx

21 lines
423 B
TypeScript

import { Community } from '@status-im/react'
const publicKey = process.env.PUBLIC_KEY
if (!publicKey) {
throw new Error(
'Add PUBLIC_KEY to your environment variables (see .env.example)'
)
}
const environment = process.env.ENVIRONMENT as
| 'development'
| 'preview'
| 'production'
export const App = () => {
return (
<Community publicKey={publicKey} environment={environment} theme="light" />
)
}