スポンサーリンク

いつになったらRedux入門できるの?(9)react-redux-starter-kitでfirebaseその1

以下のサイトを写経してみる!

http://qiita.com/konyavic/items/02d6ed5d4071a8679fe3
image

(環境)
Windows8.1
VisualCodeStudio

(1)react-redux-starter-kitの導入

C:\js\ フォルダにて、コマンドプロンプトを開き、

git clone https://github.com/davezuko/react-redux-starter-kit.git redux-starter-todos
cd redux-starter-todos
npm install
npm start

npm installで数分かかり、npm startで多少時間はかかる。

image

ブラウザでhttp://localhost:3000

image

あ、これは簡単!環境構築は、create-react-appよりもこっちの方がよいのかもしれない。。。

(2)routeを追加する

image

src/routes/Todo/components/Todo.js
image

src/routes/Todo/containers/TodoContainer.js
image

src/routes/Todo/index.js
image

src/routes/Todo/modules/todo.js
image

src/routes/index.js
image

src/components/Header/Header.js
image

あれ?こんなエラーが。

image

最初の<Link>が、<link>になっていたのを訂正

image

image

Todo のリンクは表示されたが、 Todoをクリックしても何もおこらない。。。
どこかミスしているはずだが、分からない。

 

 

続きはまた今度、、、

スポンサーリンク