Skip to content

Commit a84e668

Browse files
init commit
0 parents  commit a84e668

File tree

442 files changed

+66135
-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.

442 files changed

+66135
-0
lines changed

.babelrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"babel-preset-react-app"
4+
]
5+
}

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
root = true
2+
3+
[*.js]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
charset = utf-8
7+
8+
[*.js]
9+
indent_style = space
10+
indent_size = 2
11+
12+
[Makefile]
13+
indent_style = tab

.env.example

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
REACT_APP_GA_MEASUREMENT_ID=

.eslintrc

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"parser": "babel-eslint",
3+
"env": {
4+
"es6": true,
5+
"browser": true
6+
},
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:mdx/recommended",
10+
"airbnb",
11+
"airbnb/hooks"
12+
],
13+
"settings": {
14+
"import/resolver": {
15+
"node": {
16+
"paths": ["src"],
17+
"extensions": [".js", ".jsx", ".ts", ".tsx", ".mdx"]
18+
}
19+
}
20+
},
21+
"rules": {
22+
"comma-dangle": "off",
23+
"no-plusplus": "off",
24+
"import/no-unresolved": "off",
25+
"react-hooks/exhaustive-deps": "off",
26+
"react/jsx-filename-extension": "off",
27+
"react/jsx-props-no-spreading": "off",
28+
"react/require-default-props": "off",
29+
"react/forbid-prop-types": "off",
30+
"jsx-a11y/click-events-have-key-events": "off",
31+
"jsx-a11y/no-static-element-interactions": "off",
32+
"jsx-a11y/control-has-associated-label": "off",
33+
"jsx-a11y/anchor-is-valid": "off",
34+
"linebreak-style": 0
35+
}
36+
}

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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
17+
/.env.local
18+
/.env.development.local
19+
/.env.test.local
20+
/.env.production.local
21+
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
/.idea
27+
.idea

.prettierignore

Whitespace-only changes.

.prettierrc

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"bracketSpacing": true,
3+
"printWidth": 80,
4+
"singleQuote": true,
5+
"trailingComma": "none",
6+
"tabWidth": 2,
7+
"useTabs": false,
8+
"react/jsx-max-props-per-line": [1, { "when": "always" }]
9+
}

README.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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` or `yarn start`
8+
9+
Runs the app in development mode.<br>
10+
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
11+
12+
The page will automatically reload if you make changes to the code.<br>
13+
You will see the build errors and lint warnings in the console.
14+
15+
<p align='center'>
16+
<img src='https://cdn.jsdelivr.net/gh/marionebl/create-react-app@9f6282671c54f0874afd37a72f6689727b562498/screencast-error.svg' width='600' alt='Build errors'>
17+
</p>
18+
19+
### `npm test` or `yarn test`
20+
21+
Runs the test watcher in an interactive mode.<br>
22+
By default, runs tests related to files changed since the last commit.
23+
24+
[Read more about testing.](https://facebook.github.io/create-react-app/docs/running-tests)
25+
26+
### `npm run build` or `yarn build`
27+
28+
Builds the app for production to the `build` folder.<br>
29+
It correctly bundles React in production mode and optimizes the build for the best performance.
30+
31+
The build is minified and the filenames include the hashes.<br>
32+
33+
Your app is ready to be deployed.
34+
35+
## User Guide
36+
37+
You can find detailed instructions on using Create React App and many tips in [its documentation](https://facebook.github.io/create-react-app/).

jsconfig.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "."
4+
},
5+
"include": [
6+
"src"
7+
]
8+
}

0 commit comments

Comments
 (0)