Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
'use client'
import { useState } from 'react'
import styles from './style.module.css'
export default function Template({ children }) {
const [count, setCount] = useState(0)
return (
<>
<h1>Template {count}</h1>
<button className={styles.button} onClick={() => setCount(count + 1)}>
Increment
</button>
{children}
</>
)
}