'use client' import { useState } from 'react' import styles from './style.module.css' export default function Template({ children }) { const [count, setCount] = useState(0) return ( <>