Skip to content

Commit

Permalink
feature: adds overriding for video Container (#2480)
Browse files Browse the repository at this point in the history
* feature: adds autoplay prop to ApollosPlayerContainer

* chore: remove autoplay prop; change Container export
  • Loading branch information
tristanguckenberger committed Apr 25, 2022
1 parent 37ce964 commit 27aa0a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/apollos-ui-media-player/src/Container.tsx
Expand Up @@ -16,6 +16,7 @@ import {
PlayheadContext,
InternalPlayerContext,
} from './context';
import { named } from '@apollosproject/ui-kit';

import NativeControls from './NativeControls';

Expand Down Expand Up @@ -235,4 +236,4 @@ const Container: React.FunctionComponent<ContainerProps> = ({
);
};

export default Container;
export default named('ui-media-player.ApollosPlayerContainer')(Container);

0 comments on commit 27aa0a9

Please sign in to comment.