mirror of
https://github.com/status-im/topic-democracy.git
synced 2025-02-25 00:28:19 +00:00
16 lines
391 B
JavaScript
16 lines
391 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import { MuiThemeProvider, createMuiTheme } from '@material-ui/core/styles';
|
|
import TopicDemocracy from './TopicDemocracy';
|
|
|
|
const theme = createMuiTheme();
|
|
|
|
function App() {
|
|
return (
|
|
<MuiThemeProvider theme={theme}>
|
|
<TopicDemocracy />
|
|
</MuiThemeProvider>
|
|
);
|
|
}
|
|
|
|
render(<App />, document.querySelector('#app')); |