import { ReactNode } from "react"; export default function RightContainer({ children }: { children: ReactNode; }) { return <><div className='c'>{children}</div> <style jsx>{` .c{ margin-top: 2rem; display: flex; justify-content: flex-end; } `}</style> </>; }
(()=>{function RightContainer({ children }) {return <><div className='c'>{children}</div><style jsx>{`.c{margin-top: 2rem;display: flex;justify-content: flex-end;}`}</style></>;}return <RightContainer><span>I am here.</span></RightContainer>;});