// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 import React from 'react'; import { VideoTile } from './'; import { Flex } from '../Flex'; export default { title: 'UI Components/Video/VideoTile', component: VideoTile, }; export const _VideoTile = (args) => { return (
); }; _VideoTile.argTypes = { nameplate: { control: 'text' }, objectFit: { table: { disable: true } }, }; _VideoTile.args = { nameplate: 'Test name', }; _VideoTile.story = { name: 'VideoTile', };