Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jasurhaydarovcode/card-api-react
Hi this is repo API cards map for React & Tailwindcss
https://github.com/jasurhaydarovcode/card-api-react
api card jasurhaydarovcode react tailwindcss
Last synced: about 2 months ago
JSON representation
Hi this is repo API cards map for React & Tailwindcss
- Host: GitHub
- URL: https://github.com/jasurhaydarovcode/card-api-react
- Owner: jasurhaydarovcode
- Created: 2024-08-04T20:11:01.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-08-07T16:36:54.000Z (6 months ago)
- Last Synced: 2024-08-07T19:53:22.915Z (6 months ago)
- Topics: api, card, jasurhaydarovcode, react, tailwindcss
- Language: JavaScript
- Homepage:
- Size: 229 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON+API
### Import API
```js
import React from 'react'// Your API
import cardsAPI from './API/card.json'const App = () => {
const Card = ({ title, desc }) => {
return (
{title}
{desc}
)
}return (
<>
{cardsAPI.map(card => (
))}
>
)
}export default App
```---
### [Chat GPT](https://chatgpt.com/share/7530a3b5-2553-4b52-99be-4141aa576ebf)