mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-14 12:30:06 +02:00
19 lines
396 B
TypeScript
19 lines
396 B
TypeScript
/* eslint-disable no-plusplus */
|
|
import { AnimatedPage } from '../../shared/components/AnimatedPage';
|
|
import { useAlbums } from '../queries/getAlbums';
|
|
|
|
export const LibraryArtistsRoute = () => {
|
|
const params = {
|
|
orderBy: 'asc',
|
|
sortBy: 'title',
|
|
};
|
|
|
|
const { data: albums } = useAlbums({
|
|
skip: 0,
|
|
take: 0,
|
|
...params,
|
|
});
|
|
|
|
return <AnimatedPage>Temp</AnimatedPage>;
|
|
};
|