import React from 'react'; import type { ReactNode } from 'react'; interface Props { children: ReactNode; } const SHOW_BANNER = false; export default function Root({ children }: Props): JSX.Element { return ( <> {SHOW_BANNER && (