export const LeafletLayout = (props: {
children: React.ReactNode;
className?: string;
}) => {
return (
{/* if you adjust this padding, remember to adjust the negative margins on page in components/Pages/Page.tsx in pageScrollWrapper when card borders are hidden */}
{props.children}
);
};
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 (