import { useState } from 'react'; import { XMarkIcon } from '@heroicons/react/20/solid'; import { Transition } from '@headlessui/react'; export default function Layout({ children }: { children: React.ReactNode }) { const [isShowing, setShow] = useState(true); return ( <>

This is a replica to the awesome{' '} data.fivethirtyeight.com {' '} website.{' '} Read more here {' '}

FiveThirtyEight FiveThirtyEight{' '} replica

Built with 🌀PortalJS
Github
{children} ); }