File size: 369 Bytes
d1bf860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import ListFilterBar from '@/components/list-filter-bar';
import { Upload } from 'lucide-react';
import { FilesTable } from './files-table';

export default function Files() {
  return (
    <section className="p-8">
      <ListFilterBar title="Files">
        <Upload />
        Upload file
      </ListFilterBar>
      <FilesTable></FilesTable>
    </section>
  );
}