import classNames from 'classnames'; import type { HTMLAttributes } from 'react'; import { SKY_BACKGROUND } from './constants'; import { Outlet } from 'react-router-dom'; import { TinyScroll } from '@vegaprotocol/ui-toolkit'; export const Layout = ({ className, children, ...props }: HTMLAttributes) => { return (
{children || }
); }; export const LayoutWithSky = ({ className, ...props }: HTMLAttributes) => { return ( ); };