hugging2021's picture
Upload folder using huggingface_hub
58faf93 verified
raw
history blame contribute delete
332 Bytes
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