Added the files.

This commit is contained in:
Batuhan Berk Başoğlu 2021-03-30 21:50:36 -04:00
commit 38ccdcbfe5
124 changed files with 32079 additions and 0 deletions

13
client/src/App.js Normal file
View file

@ -0,0 +1,13 @@
import React, { Component } from 'react'
import App from 'base-shell/lib'
import MUIConfig from 'material-ui-shell/lib'
import merge from 'base-shell/lib/utils/config'
import _config from './config'
const config = merge(MUIConfig, _config)
export default class Demo extends Component {
render() {
return <App config={config} />
}
}