This commit is contained in:
Rahim
2025-09-22 23:39:30 +10:00
parent d3221ec211
commit d2b2dd4868
132 changed files with 860 additions and 969 deletions
@@ -29,7 +29,7 @@ export interface MediaElementRef {
playbackRate: number;
readyState: number;
networkState: number;
play(): Promise<void>;
pause(): void;
load(): void;
@@ -37,10 +37,8 @@ export interface MediaElementRef {
}
// Placeholder component - will be implemented later
export const VideoElement = React.forwardRef<MediaElementRef, MediaElementProps>(
(_, __) => {
return React.createElement('div', { children: 'React Native VideoElement - Coming Soon' });
}
);
export const VideoElement = React.forwardRef<MediaElementRef, MediaElementProps>((_, __) => {
return React.createElement('div', { children: 'React Native VideoElement - Coming Soon' });
});
VideoElement.displayName = 'VideoElement';
VideoElement.displayName = 'VideoElement';