Skip to content

Commit 48a7d2b

Browse files
committed
Initial commit
1 parent 1d72e8b commit 48a7d2b

File tree

183 files changed

+230609
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

183 files changed

+230609
-0
lines changed

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.DS_STORE
2+
node_modules
3+
scripts/flow/*/.flowconfig
4+
*~
5+
*.pyc
6+
.grunt
7+
_SpecRunner.html
8+
__benchmarks__
9+
build/
10+
remote-repo/
11+
coverage/
12+
.module-cache
13+
fixtures/dom/public/react-dom.js
14+
fixtures/dom/public/react.js
15+
test/the-files-to-test.generated.js
16+
*.log*
17+
chrome-user-data
18+
*.sublime-project
19+
*.sublime-workspace
20+
.idea
21+
*.iml
22+
.vscode
23+
*.swp
24+
*.swo

lesson-1/README.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# React Bootstrap with Material Design
2+
MDBootstrap for React
3+
4+
## Getting Started
5+
To test, contribute or just see what we did follow few easy steps:
6+
- clone the repository
7+
- cd to the directory with the repository
8+
- run `yarn install` (or `npm install` if you don't use yarn)
9+
- run the app using `yarn start` (or `npm start`)
10+
- to build project use `yarn run build` (od `npm run build`)
11+
- `yarn run remove-demo` (or `npm run remove-demo`) removes demo app pages
12+
- enjoy!
13+
14+
## Bugs
15+
If you want to report a bug or submit your idea feel fre to open an issue
16+
17+
Before you report a bug, please take your time to find if an issue hasn't been reported yet
18+
19+
We're also open to pull requests
20+
21+
## Something Missing?
22+
If you still have some questions do not hesitate to ask us. Open an issue or [visit our Slack](https://mdbbetatest.slack.com)

lesson-1/README.txt

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
Material Design for Bootstrap
2+
3+
Version: MDB React Free 4.8.5
4+
5+
Documentation:
6+
https://mdbootstrap.com/react/
7+
8+
Getting started:
9+
https://mdbootstrap.com/react/react-bootstrap-getting-started/
10+
11+
FAQ
12+
https://mdbootstrap.com/faq/
13+
14+
Support:
15+
https://mdbootstrap.com/support/cat/mdb-react/
16+
17+
ChangeLog
18+
https://mdbootstrap.com/react/changelog/
19+
20+
License:
21+
https://mdbootstrap.com/license/
22+
23+
Facebook: https://facebook.com/mdbootstrap
24+
Twitter: https://twitter.com/MDBootstrap
25+
Google+: https://plus.google.com/u/0/+Mdbootstrap/posts
26+
Dribbble: https://dribbble.com/mdbootstrap
27+
28+
29+
Contact:
30+

lesson-1/license.pdf

59.1 KB
Binary file not shown.

lesson-1/mdb-app/.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

lesson-1/mdb-app/README.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
2+
3+
## Available Scripts
4+
5+
In the project directory, you can run:
6+
7+
### `npm start`
8+
9+
Runs the app in the development mode.<br>
10+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11+
12+
The page will reload if you make edits.<br>
13+
You will also see any lint errors in the console.
14+
15+
### `npm test`
16+
17+
Launches the test runner in the interactive watch mode.<br>
18+
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
19+
20+
### `npm run build`
21+
22+
Builds the app for production to the `build` folder.<br>
23+
It correctly bundles React in production mode and optimizes the build for the best performance.
24+
25+
The build is minified and the filenames include the hashes.<br>
26+
Your app is ready to be deployed!
27+
28+
See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
29+
30+
### `npm run eject`
31+
32+
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
33+
34+
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
35+
36+
Instead, it will copy all the configuration files and the transitive dependencies (Webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
37+
38+
You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
39+
40+
## Learn More
41+
42+
You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
43+
44+
To learn React, check out the [React documentation](https://reactjs.org/).
45+
46+
### Code Splitting
47+
48+
This section has moved here: https://facebook.github.io/create-react-app/docs/code-splitting
49+
50+
### Analyzing the Bundle Size
51+
52+
This section has moved here: https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size
53+
54+
### Making a Progressive Web App
55+
56+
This section has moved here: https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app
57+
58+
### Advanced Configuration
59+
60+
This section has moved here: https://facebook.github.io/create-react-app/docs/advanced-configuration
61+
62+
### Deployment
63+
64+
This section has moved here: https://facebook.github.io/create-react-app/docs/deployment
65+
66+
### `npm run build` fails to minify
67+
68+
This section has moved here: https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify

0 commit comments

Comments
 (0)