mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-03 03:11:40 +00:00
21 lines
765 B
TypeScript
21 lines
765 B
TypeScript
import type { AgGridReact as AgGridReactType } from '@ag-grid-community/react/lib/agGridReact';
|
|
import { useRef } from 'react';
|
|
import { VirtualGridContainer } from '/@/renderer/components';
|
|
import { AnimatedPage } from '/@/renderer/features/shared';
|
|
import { SongListContent } from '/@/renderer/features/songs/components/song-list-content';
|
|
import { SongListHeader } from '/@/renderer/features/songs/components/song-list-header';
|
|
|
|
const TrackListRoute = () => {
|
|
const tableRef = useRef<AgGridReactType | null>(null);
|
|
|
|
return (
|
|
<AnimatedPage>
|
|
<VirtualGridContainer>
|
|
<SongListHeader tableRef={tableRef} />
|
|
<SongListContent tableRef={tableRef} />
|
|
</VirtualGridContainer>
|
|
</AnimatedPage>
|
|
);
|
|
};
|
|
|
|
export default TrackListRoute;
|