Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/louisgv/kenaz
Cross-platform component library
https://github.com/louisgv/kenaz
Last synced: 7 days ago
JSON representation
Cross-platform component library
- Host: GitHub
- URL: https://github.com/louisgv/kenaz
- Owner: louisgv
- Created: 2021-11-21T02:14:18.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-29T06:46:29.000Z (about 3 years ago)
- Last Synced: 2024-11-09T09:47:47.206Z (2 months ago)
- Size: 23.6 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Kenaz
The overall architecture is a monorepo that has all dev dependencies hoisted to the top directory.
At the moment, we would like to make sure that:
- Each component is atomic and can be imported like:
```tsx
import { Button } from "@kenaz/components";
```- The components should be:
- self-contained
- Use the latest react versions
- Use react-native-web
- Use drispy- We also want our component library to be usable in both web and native using the exact same import statement.
- How can this be done? Can metro bundler look for `.native` file as an alternative?