export const LeafletLayout = (props: { children: React.ReactNode; className?: string; }) => { return ( ); }; export const BookendSpacer = (props: { onClick?: (e: React.MouseEvent) => void; children?: React.ReactNode; }) => { // these spacers go at the end of the first and last pages so that those pages can be scrolled to the center of the screen return (
{}} > {props.children}
); }; export const SandwichSpacer = (props: { onClick?: (e: React.MouseEvent) => void; noWidth?: boolean; className?: string; }) => { // these spacers are used between pages so that the page carousel can fit two pages side by side by snapping in between pages return (
); };