Skip to content

Commit c9a5851

Browse files
author
jan hof
committed
initial template setup
1 parent b661344 commit c9a5851

Some content is hidden

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

66 files changed

+36
-9746
lines changed

.editorconfig

Lines changed: 0 additions & 14 deletions
This file was deleted.

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
PORT=3000
1+
PORT=3001
22
CHOKIDAR_USEPOLLING=true

.vscode/launch.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"command": "npm start",
9+
"name": "Run npm start",
10+
"request": "launch",
11+
"type": "node-terminal"
12+
}
13+
]
14+
}

CHANGELOG.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

ISSUE_TEMPLATE.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

LICENSE

Lines changed: 0 additions & 21 deletions
This file was deleted.

REACT.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 174 deletions
This file was deleted.

migration.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/App.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,13 @@ const loading = (
1111
// Containers
1212
const TheLayout = React.lazy(() => import('./containers/TheLayout'));
1313

14-
// Pages
15-
const Login = React.lazy(() => import('./views/pages/login/Login'));
16-
const Register = React.lazy(() => import('./views/pages/register/Register'));
17-
const Page404 = React.lazy(() => import('./views/pages/page404/Page404'));
18-
const Page500 = React.lazy(() => import('./views/pages/page500/Page500'));
19-
2014
class App extends Component {
2115

2216
render() {
2317
return (
2418
<HashRouter>
2519
<React.Suspense fallback={loading}>
2620
<Switch>
27-
<Route exact path="/login" name="Login Page" render={props => <Login {...props}/>} />
28-
<Route exact path="/register" name="Register Page" render={props => <Register {...props}/>} />
29-
<Route exact path="/404" name="Page 404" render={props => <Page404 {...props}/>} />
30-
<Route exact path="/500" name="Page 500" render={props => <Page500 {...props}/>} />
3121
<Route path="/" name="Home" render={props => <TheLayout {...props}/>} />
3222
</Switch>
3323
</React.Suspense>

0 commit comments

Comments
 (0)