-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98bfcc7
commit e781c1b
Showing
8 changed files
with
549 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = {extends: ['@commitlint/config-conventional']}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
import React from "react"; | ||
import { render } from "react-dom"; | ||
import Root from "./modules/root"; | ||
import "@fortawesome/fontawesome-free/css/all.css"; | ||
import "animate.css"; | ||
import "slick-carousel/slick/slick.css"; | ||
import "slick-carousel/slick/slick-theme.css"; | ||
import React from 'react'; | ||
import {render} from 'react-dom'; | ||
import Root from './modules/root'; | ||
import '@fortawesome/fontawesome-free/css/all.css'; | ||
import 'animate.css'; | ||
import 'slick-carousel/slick/slick.css'; | ||
import 'slick-carousel/slick/slick-theme.css'; | ||
|
||
import registerServiceWorker from "./registerServiceWorker"; | ||
import registerServiceWorker from './registerServiceWorker'; | ||
|
||
// let store = configureStore(); | ||
|
||
render(<Root />, document.getElementById("root")); | ||
render(<Root />, document.getElementById('root')); | ||
registerServiceWorker(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import {createStore, applyMiddleware} from 'redux'; | ||
import createSagaMiddleware from 'redux-saga'; | ||
|
||
import reducers from './reducers'; | ||
import sagas from './sagas'; | ||
|
||
const sagaMiddleware = createSagaMiddleware(); | ||
|
||
const store = createStore(reducers(), applyMiddleware(sagaMiddleware)); | ||
|
||
sagaMiddleware.run(sagas); | ||
|
||
export default store; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import {combineReducers} from 'redux'; | ||
|
||
export default () => combineReducers({}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import {all} from 'redux-saga/effects'; | ||
|
||
export default function* rootSaga() { | ||
yield all([]); | ||
} |
Oops, something went wrong.