Skip to content

Commit ef8b395

Browse files
committed
feat(introduction): add abstract, project vision and tech stack
1 parent ee9629b commit ef8b395

File tree

8 files changed

+6410
-502
lines changed

8 files changed

+6410
-502
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Amigrant Documentation
22

3-
This documentation contains the project plan, project details, contribution guidelines, and conventions used for the [Amigrant].
3+
This documentation contains the project plan, project details, contribution guidelines, and conventions used for [Amigrant]().
44

55
## Local Development
66

bun.lockb

4.47 KB
Binary file not shown.
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.counter {
2+
border: 1px solid #ccc;
3+
border-radius: 5px;
4+
padding: 2px 6px;
5+
margin: 12px 0 0;
6+
}

components/counter/counters.tsx

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
// Example from https://beta.reactjs.org/learn
2+
3+
import { useState } from 'react'
4+
import styles from './counters.module.css'
5+
6+
function MyButton() {
7+
const [count, setCount] = useState(0)
8+
9+
function handleClick() {
10+
setCount(count + 1)
11+
}
12+
13+
return (
14+
<div>
15+
<button onClick={handleClick} className={styles.counter}>
16+
Clicked {count} times
17+
</button>
18+
</div>
19+
)
20+
}
21+
22+
export default function MyApp() {
23+
return <MyButton />
24+
}

0 commit comments

Comments
 (0)