-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bb52ae8
commit f4ab0e3
Showing
5 changed files
with
67 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,49 @@ | ||
# tsp para fazer o transforme do ts para js, ele e mais rapido pq usa vite por de baixo dos panos | ||
<p align="center"> | ||
<h3 align="center">chardonnay</h3> | ||
|
||
<p align="center"> | ||
A mobile first frontend framework made with ( evino ). | ||
</p> | ||
|
||
<br> | ||
|
||
<p align="center">It is still in early development</p> | ||
|
||
<br/> | ||
<p align="center">This project will use tsp to convert all TypeScript code</p> | ||
|
||
## Examples | ||
|
||
We have all components listed on our documentation. Here is the first one to get you started: | ||
|
||
```tsx | ||
import React from "react"; | ||
import { Button } from "chardonnay"; | ||
|
||
function App() { | ||
return <Button>Hello World</Button>; | ||
} | ||
|
||
export { App }; | ||
|
||
``` | ||
|
||
## Installation | ||
|
||
```bash | ||
npm install chardonnay | ||
``` | ||
|
||
But all commands run with `yarn` as well. | ||
|
||
## Testing | ||
|
||
All tests are done using `Vitest` | ||
|
||
```bash | ||
npm test | ||
``` | ||
|
||
## License | ||
|
||
Licensed under [MIT](LICENSE). Enjoy. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
import * as Tokens from './tokens' | ||
import * as Components from './components' | ||
import { Colors, BorderRadius, Spacing } from './tokens' | ||
import { Button } from './components' | ||
|
||
export { Components, Tokens } | ||
// export components, token publish npm | ||
export { Button, Colors, BorderRadius, Spacing } |