Skip to content

Commit b408d08

Browse files
committed
Restructures #1
No components directory on top
1 parent 7789968 commit b408d08

File tree

13 files changed

+3
-3
lines changed

13 files changed

+3
-3
lines changed

src/client/components/base/Main.tsx renamed to src/client/base/Main.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
Dispatch,
99
} from 'redux'
1010
import { Themes } from 'style'
11-
import Nav from './Nav'
11+
import Nav from './Nav/Nav'
1212
import PageRouter from './PageRouter'
1313
import TitleBar from './TitleBar'
1414

File renamed without changes.

src/client/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { createBrowserHistory } from 'history'
33
import * as React from 'react'
44
import * as ReactDOM from 'react-dom'
55
import { Provider } from 'react-redux'
6-
import Main from './components/base/Main'
6+
import Main from './base/Main'
77
import { store } from './redux/store'
88

99
let mainElement: HTMLElement | null = document.getElementById('main')
@@ -26,5 +26,5 @@ render()
2626

2727
// Hot Module Replacement API
2828
if (module.hot) {
29-
module.hot.accept('./components/base/Main', render)
29+
module.hot.accept('./base/Main', render)
3030
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)