status-web/examples/channel/index.tsx

26 lines
482 B
TypeScript

import React, { render } from 'react-dom';
import { GroupChat, lightTheme } from '@status-im/react';
import { StrictMode } from 'react';
const App = () => {
return (
<div>
<GroupChat
theme={lightTheme}
communityKey="<YOUR_COMMUNITY_KEY>"
config={{
environment: '<ENVIRONMENT>',
dappUrl: '<URL>',
}}
/>
</div>
);
};
render(
<StrictMode>
<App />
</StrictMode>,
document.getElementById('root')
);