summaryrefslogtreecommitdiffstats
path: root/src/App.js
blob: 21e9763608277862d8bf23c8fe55c60bc403ddb7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import SignIn from './signin.js';
import Container from '@material-ui/core/Container';
import Grid from '@material-ui/core/Grid';
import RuzList from './RuzList.js';
//import RuzSearch from './RuzSearch.js';
import { makeStyles, ThemeProvider, useTheme, createMuiTheme } from '@material-ui/core/styles';

import React, {Component} from 'react'

const theme = createMuiTheme({
  palette: {
    type: 'dark',
    background: {
      paper: '#121212',
      default: '#121212',
    },
    primary: {
      main: '#BB86FC',
    },
    secondary: {
      main: '#03DAC6',
    },
  }
});

class App extends Component {
  render() {
    return <div className="">
      <ThemeProvider theme={theme}>
      <Grid container spacing={0}>
        <Grid item xs={12} md={6} lg={6}>
          <RuzList />
        </Grid>
        <Grid item xs={12} md={6} lg={6}>
          {/* <SignIn /> */}
        </Grid>
      </Grid>
      </ThemeProvider>
      <div className="App-instructions App-flex">
      </div>
    </div>
  }
}

export default App