├── .gitignore
├── DOCS.md
├── README.md
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── index.html
└── manifest.json
├── src
├── App.js
├── App.test.js
├── components
│ ├── Container.js
│ ├── NavLink.js
│ └── SlabStat.js
├── elements
│ ├── A.js
│ ├── Abbr.js
│ ├── Address.js
│ ├── Article.js
│ ├── Aside.js
│ ├── B.js
│ ├── Br.js
│ ├── Button.js
│ ├── Circle.js
│ ├── Cite.js
│ ├── Code.js
│ ├── Data.js
│ ├── Dd.js
│ ├── Div.js
│ ├── Dl.js
│ ├── Dt.js
│ ├── Em.js
│ ├── Fieldset.js
│ ├── Footer.js
│ ├── Form.js
│ ├── H1.js
│ ├── H2.js
│ ├── H3.js
│ ├── H4.js
│ ├── H5.js
│ ├── H6.js
│ ├── Header.js
│ ├── Hr.js
│ ├── Img.js
│ ├── Input.js
│ ├── InputCheckbox.js
│ ├── InputPassword.js
│ ├── InputRadio.js
│ ├── InputText.js
│ ├── Italic.js
│ ├── Label.js
│ ├── Legend.js
│ ├── Li.js
│ ├── Line.js
│ ├── Main.js
│ ├── Nav.js
│ ├── Ol.js
│ ├── P.js
│ ├── Path.js
│ ├── Polygon.js
│ ├── Polyline.js
│ ├── Pre.js
│ ├── Progress.js
│ ├── Q.js
│ ├── Rect.js
│ ├── S.js
│ ├── Section.js
│ ├── Select.js
│ ├── Small.js
│ ├── Span.js
│ ├── Strong.js
│ ├── Sub.js
│ ├── Sup.js
│ ├── Svg.js
│ ├── Table.js
│ ├── Tbody.js
│ ├── Td.js
│ ├── Textarea.js
│ ├── Tfoot.js
│ ├── Thead.js
│ ├── Time.js
│ ├── Tr.js
│ ├── U.js
│ ├── Ul.js
│ ├── Var.js
│ └── index.js
├── index.js
├── pages
│ └── Home.js
├── registerServiceWorker.js
└── theme.js
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/ignore-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 |
6 | # testing
7 | /coverage
8 |
9 | # production
10 | /build
11 |
12 | # misc
13 | .DS_Store
14 | .env.local
15 | .env.development.local
16 | .env.test.local
17 | .env.production.local
18 |
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 |
--------------------------------------------------------------------------------
/DOCS.md:
--------------------------------------------------------------------------------
1 | This project was bootstrapped with [Create React App](https://github.com/facebookincubator/create-react-app).
2 |
3 | Below you will find some information on how to perform common tasks.
4 | You can find the most recent version of this guide [here](https://github.com/facebookincubator/create-react-app/blob/master/packages/react-scripts/template/README.md).
5 |
6 | ## Table of Contents
7 |
8 | - [Updating to New Releases](#updating-to-new-releases)
9 | - [Sending Feedback](#sending-feedback)
10 | - [Folder Structure](#folder-structure)
11 | - [Available Scripts](#available-scripts)
12 | - [npm start](#npm-start)
13 | - [npm test](#npm-test)
14 | - [npm run build](#npm-run-build)
15 | - [npm run eject](#npm-run-eject)
16 | - [Supported Browsers](#supported-browsers)
17 | - [Supported Language Features and Polyfills](#supported-language-features-and-polyfills)
18 | - [Syntax Highlighting in the Editor](#syntax-highlighting-in-the-editor)
19 | - [Displaying Lint Output in the Editor](#displaying-lint-output-in-the-editor)
20 | - [Debugging in the Editor](#debugging-in-the-editor)
21 | - [Formatting Code Automatically](#formatting-code-automatically)
22 | - [Changing the Page `