'use client'; import * as React from 'react'; import Container from './Container.js'; export default function ShowMore({children}) { const [show, setShow] = React.useState(false); if (!show) { return setShow(true)}>Show More; } return {children}; }