Skip to content

Commit 1049346

Browse files
committed
docs added
1 parent 526fede commit 1049346

File tree

3 files changed

+56
-0
lines changed

3 files changed

+56
-0
lines changed

docs/.nojekyll

Whitespace-only changes.

docs/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
# 10secondsofcode
3+
10secondsofcode is a easy way to understand the reactjs snippets in 10 seconds. [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2F10secondsofcode%2F10secondsofcode.svg?type=small)](https://app.fossa.io/projects/git%2Bgithub.com%2F10secondsofcode%2F10secondsofcode?ref=badge_small)
4+
5+
## Getting Started
6+
7+
```
8+
git clone https://github.com/10secondsofcode/10secondsofcode.git
9+
npm install
10+
npm start
11+
```
12+
13+
## Built With
14+
15+
* [ReactJs](https://github.com/reactjs)
16+
* [BootStrap4](https://getbootstrap.com/docs/4.1/getting-started/introduction/)
17+
18+
## Contributing
19+
20+
If you have any idea for an improvement or found a bug, do not hesitate to open an issue. And if you have time clone this repo and submit a pull request and help me make *10secondsofcode*, we all dream about! Please read [CONTRIBUTING.md](https://github.com/10secondsofcode/10secondsofcode/blob/master/CONTRIBUTING.md) for details on our code of conduct, and the process for submitting pull requests to us.
21+
22+
## Authors
23+
24+
See also the list of [contributors](https://github.com/your/project/contributors) who participated in this project.
25+
26+
## License
27+
28+
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details
29+
30+
## Acknowledgments
31+
32+
* Hat tip to anyone whose code was used
33+
* Inspiration
34+
* etc
35+

docs/index.html

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>10secondsofcode - The team behind 10-seconds-of-code and official 10-seconds projects.</title>
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
7+
<meta name="description" content="The team behind 10-seconds-of-code and official 10-seconds projects.">
8+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
9+
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css">
10+
</head>
11+
<body>
12+
<div id="app"></div>
13+
<script>
14+
window.$docsify = {
15+
name: '10secondsofcode',
16+
repo: 'https://github.com/10secondsofcode/10secondsofcode'
17+
}
18+
</script>
19+
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script>
20+
</body>
21+
</html>

0 commit comments

Comments
 (0)