mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
13 lines
449 B
TypeScript
13 lines
449 B
TypeScript
import { FC } from 'react';
|
|
|
|
import { NodeAudioBlock } from '~/components/node/NodeAudioBlock';
|
|
import { Placeholder } from '~/components/placeholders/Placeholder';
|
|
import { NodeComponentProps } from '~/constants/node';
|
|
|
|
const LabAudio: FC<NodeComponentProps> = ({ node, isLoading }) => (
|
|
<Placeholder active={isLoading} width="100%" height={100}>
|
|
<NodeAudioBlock node={node} isLoading={isLoading} />
|
|
</Placeholder>
|
|
);
|
|
|
|
export { LabAudio };
|