mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
done
This commit is contained in:
@@ -40,4 +40,4 @@
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -10,4 +10,4 @@
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["dist", "node_modules"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,4 +18,4 @@ export default defineConfig({
|
||||
incremental: false,
|
||||
},
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user