https://github.com/lucasbailo/type-script-studies
Improving TypeScript
https://github.com/lucasbailo/type-script-studies
react scss-styles timer-application typescript
Last synced: 3 months ago
JSON representation
Improving TypeScript
- Host: GitHub
- URL: https://github.com/lucasbailo/type-script-studies
- Owner: lucasbailo
- Created: 2024-10-19T23:15:18.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T18:11:01.000Z (9 months ago)
- Last Synced: 2025-02-10T09:42:04.301Z (5 months ago)
- Topics: react, scss-styles, timer-application, typescript
- Language: TypeScript
- Homepage: https://type-script-studies.vercel.app
- Size: 24.2 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Welcome again to another TypeScript project! 👋
# TypeScript
## • Test the project yourself: [Click to test!!!](https://type-script-studies.vercel.app/)
### → Add tasks with their duration

### → Select and start a task

### → Get a check confirmation when the task is over

## • Some code that I'm proud of
```js
interface Props {
type?: "button" | "submit" | "reset" | undefined,
onClick?: () => void,
children?: React.ReactNode
}
export default function Button ({onClick, type, children} : Props) {
return (
{children}
)
}
```## • Built with
- TypeScrit;
- SCSS;## • Author
- Website - [My GitHub](https://github.com/lucasbailo)
- Frontend Mentor - [@lucasbailo](https://www.frontendmentor.io/profile/lucasbailo)
- Instagram - [@lucassbailo](https://www.instagram.com/lucassbailo/)
- LinkedIn - [Lucas Bailo](https://www.linkedin.com/in/lcsbailo)