Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lucasbailo/type-script-studies
Improving TypeScript
https://github.com/lucasbailo/type-script-studies
Last synced: about 1 month ago
JSON representation
Improving TypeScript
- Host: GitHub
- URL: https://github.com/lucasbailo/type-script-studies
- Owner: lucasbailo
- Created: 2024-10-19T23:15:18.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-10-20T18:11:01.000Z (3 months ago)
- Last Synced: 2024-10-20T21:37:13.569Z (3 months ago)
- 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
![](./src/assets/gifs/Gif1.gif)
### → Select and start a task
![](./src/assets/gifs/Gif2.gif)
### → Get a check confirmation when the task is over
![](./src/assets/gifs/Gif3.gif)
## • 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)