import React, { FC } from 'react';
import PathCrumbs from "../../components/PathCrumbs";
import Viewport from "../../components/ViewPort";
import styles from './default.module.scss';
import clsx from 'clsx';
import Typ from '../../components/Typ';
import Box from '../../components/Box';
export type DefaultPageProps = {
className?: string;
path?: string;
lastUpdated?: string;
children?: React.ReactChild;
};
const LastUpdatedDate : FC<{ children: React.ReactNode }> = ({children}) => (
Last Updated: {children}
)
const DefaultPage : FC = ({className, lastUpdated, children, path, ...props}) => (
{path !== undefined ? : undefined}
{lastUpdated ? {lastUpdated} : undefined}
{children}
);
export default DefaultPage;