File size: 332 Bytes
58faf93
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { Box } from '@mantine/core'

import SearchPanel from './SearchPanel'
import RecordPanel from './RecordPanel'

const RecordPage = ({ collectionName }: { collectionName: string }) => {
  return (
    <Box>
      <SearchPanel />
      <RecordPanel collectionName={collectionName} />
    </Box>
  )
}

export default RecordPage