Browse Source

Add panel to table search

master
jeffvli 3 years ago
parent
commit
ab42dfd799
  1. 3
      src/components/search/SearchView.tsx

3
src/components/search/SearchView.tsx

@ -1,6 +1,7 @@
import React, { useState } from 'react';
import settings from 'electron-settings';
import { useQuery } from 'react-query';
import { Panel } from 'rsuite';
import { search3 } from '../../api/api';
import useRouterQuery from '../../hooks/useRouterQuery';
import GenericPage from '../layout/GenericPage';
@ -112,6 +113,7 @@ const SearchView = () => {
<SectionTitleWrapper>
<SectionTitle>Songs</SectionTitle>
</SectionTitleWrapper>
<Panel bodyFill bordered>
<ListViewTable
height={500}
data={data.song}
@ -134,6 +136,7 @@ const SearchView = () => {
dnd={false}
virtualized
/>
</Panel>
</>
)}
</GenericPage>

Loading…
Cancel
Save