mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-14 01:15:47 +01:00
18 lines
439 B
TypeScript
18 lines
439 B
TypeScript
|
|
import MediaDisplay from './MediaDisplay';
|
||
|
|
|
||
|
|
export default {
|
||
|
|
title: 'Media display component',
|
||
|
|
args: {
|
||
|
|
media: {
|
||
|
|
id: '1',
|
||
|
|
title: 'Media title',
|
||
|
|
description: 'Media description',
|
||
|
|
poster: 'https://fr.web.img5.acsta.net/pictures/22/04/08/10/30/1779137.jpg',
|
||
|
|
type: 'movie',
|
||
|
|
genres: ['Action', 'Adventure', 'Fantasy'],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export const Default = (args: any) => <MediaDisplay {...args} />;
|