import { Box } from '@mantine/core' import SearchPanel from './SearchPanel' import RecordPanel from './RecordPanel' const RecordPage = ({ collectionName }: { collectionName: string }) => { return ( ) } export default RecordPage