'use client' import './style.css' import styles from './style.module.css' export default function ClientLayout({ children }) { return ( <>
Client Layout: CSS Modules
Client Layout: Global CSS
{children} ) }