Skip to content

Commit 442c39d

Browse files
authored
Merge pull request #1 from modularcode/dev-flat-modules
Flatten main modules and add layouts support
2 parents a27f093 + 3789d38 commit 442c39d

File tree

153 files changed

+209
-189
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+209
-189
lines changed

docs/references.md

Lines changed: 5 additions & 0 deletions
File renamed without changes.

src/Dashboard/Admin/AdminDocs.md renamed to src/Administration/AdministrationDocs.md

Lines changed: 1 addition & 1 deletion

src/Administration/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from './Administration'

src/App.tsx

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,26 +4,11 @@ import { ThemeProvider } from '@material-ui/styles'
44

55
import CssBaseline from '@material-ui/core/CssBaseline'
66

7-
import config from './config'
8-
import authService from './_services/authService'
9-
10-
import api from './_api'
11-
12-
import store from './_store'
7+
import store from './_state'
138
import theme from './_theme'
149

1510
import AppRouter from './AppRouter'
1611

17-
// Init the API service
18-
authService.init({
19-
useSampleData: config.useSampleData,
20-
})
21-
22-
// Init rest API client
23-
api.init({
24-
useSampleData: config.useSampleData,
25-
})
26-
2712
const App: React.FC = () => {
2813
return (
2914
<div className="App">

0 commit comments

Comments
 (0)