diff --git a/web/src/components/SampleList.tsx b/web/src/components/SampleList.tsx index b53d821..410e9fa 100644 --- a/web/src/components/SampleList.tsx +++ b/web/src/components/SampleList.tsx @@ -16,7 +16,7 @@ export const SampleList: FC<{ pack: string }> = ({ pack }) => {

Samples

diff --git a/web/src/components/SampleTray.tsx b/web/src/components/SampleTray.tsx index 65fa5ea..46427c1 100644 --- a/web/src/components/SampleTray.tsx +++ b/web/src/components/SampleTray.tsx @@ -1,14 +1,26 @@ import { FC } from 'react'; -import { FaPlay } from 'react-icons/fa'; +import { FaDownload, FaPlay } from 'react-icons/fa'; -export const SampleTray: FC<{ sample: string }> = ({ sample }) => { +export const SampleTray: FC<{ packId: string; sampleId: string }> = ({ + packId, + sampleId, +}) => { return (
  • +
    +

    {sampleId}

    +
    -

    {sample}

    + + +
  • );