Markdown example

Learn more about Markdown

MH
M Haidar Hanif
JB
Jamie Barton

Markdown

Test some code here.

The goal is to have several examples and demos to combine the best Tailwind-related ecosystem such as Tailwind CSS v3, Headless UI, Radix UI, Reach UI, Vechai UI, and more. We also encourage. So keep in mind this is not intended towards simplicity, rather to collect as much as design practices as it can. Focusing more on the styling only instead of the integration with backend, database, and testing.

git clone https://github.com/mhaidarhanif/rewinds rewinds-project
console.log('Hello')
console.log('Hello')
import React, { useState } from "react";
function Example() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}