├── .gitignore
├── README.md
├── dist
├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.ttf
│ ├── glyphicons-halflings-regular.woff
│ └── glyphicons-halflings-regular.woff2
├── css
│ ├── main.css.map
│ ├── main.css
│ ├── bootstrap-theme.min.css.map
│ ├── bootstrap-theme.min.css
│ └── bootstrap.min.css.map
└── js
│ └── bootstrap.min.js
├── src
├── jsx
│ ├── app.jsx
│ └── components
│ │ ├── channel.jsx
│ │ ├── channels-box.jsx
│ │ └── layout.jsx
└── scss
│ └── main.scss
├── webpack.config.js
├── index.html
├── package.json
└── LICENSE
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # twitchtv-viewer
--------------------------------------------------------------------------------
/dist/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abdelaziz18003/twitchtv-viewer/master/dist/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/dist/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abdelaziz18003/twitchtv-viewer/master/dist/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/dist/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abdelaziz18003/twitchtv-viewer/master/dist/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/dist/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Abdelaziz18003/twitchtv-viewer/master/dist/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/src/jsx/app.jsx:
--------------------------------------------------------------------------------
1 | import $ from "jquery";
2 | import React from "react";
3 | import ReactDOM from "react-dom";
4 |
5 | import Layout from "./components/layout.jsx";
6 |
7 | ReactDOM.render(