Skip to content

Commit 1937ea4

Browse files
authored
feat: adds Kimberlee's Lesson 25-Intro to React-Starting the servers-creating new components and creating a page for adding new programs (#651)
* feat: created lesson 25 personal folder and copied template files * Merge remote-tracking branch 'refs/remotes/origin/Lesson-25' into Lesson-25 * chore: fixed file path and ran npm install * Merge branch 'code-differently:main' into Lesson-25 * chore: deleted redundant file * Merge remote-tracking branch 'refs/remotes/origin/Lesson-25' into Lesson-25 * Merge branch 'code-differently:main' into Lesson-25 * Merge branch 'code-differently:main' into Lesson-25 * feat: added program, programlist, & form files/ created program tsx * chore: created programlist, updated program section * updated program section * removed extra title * Merge branch 'code-differently:main' into Lesson-25 * chore: made folders for program files * Merge remote-tracking branch 'refs/remotes/origin/Lesson-25' into Lesson-25 * chore: moved scss attributes to correct files * chore: updated imports * Merge branch 'code-differently:main' into Lesson-25 * chore: created form, corrected filepath * Merge remote-tracking branch 'refs/remotes/origin/Lesson-25' into Lesson-25 * chore: fixed Add Program button to navigate to form * chore: fixed a change I mistakenly made * Merge branch 'code-differently:main' into Lesson-25 * Merge branch 'code-differently:main' into Lesson-25 * Merge branch 'code-differently:main' into Lesson-25 * Merge branch 'code-differently:main' into Lesson-25
1 parent 7ac1372 commit 1937ea4

35 files changed

+6650
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"bracketSpacing": false,
3+
"singleQuote": true,
4+
"trailingComma": "es5",
5+
"arrowParens": "avoid",
6+
"importOrder": [
7+
"<THIRD_PARTY_MODULES>",
8+
"interface",
9+
"(?=content|api)",
10+
"context/",
11+
"mock/",
12+
"config",
13+
"utils/",
14+
"hooks/",
15+
"(components/|./index)",
16+
".svg",
17+
"^../(.*)$",
18+
"(?=./styles.module.scss)"
19+
],
20+
"endOfLine": "auto",
21+
"importOrderSeparation": true,
22+
"importOrderSortSpecifiers": true,
23+
"plugins": [
24+
"@trivago/prettier-plugin-sort-imports"
25+
]
26+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
// .eslintrc.js
2+
import eslintConfigPrettier from 'eslint-config-prettier';
3+
4+
export default [eslintConfigPrettier];
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Code Different - Cohort 24Q1</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)