mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
feat(react): initial skin scaffolding (#523)
Co-authored-by: Rahim <rahim.alwer@gmail.com>
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export * from './skin';
|
||||
@@ -0,0 +1,3 @@
|
||||
.media-skin {
|
||||
color: var(--media-color, red);
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
import type { BaseSkinProps } from '../types';
|
||||
|
||||
export type BackgroundVideoSkinProps = BaseSkinProps;
|
||||
|
||||
export function BackgroundVideoSkin(props: BackgroundVideoSkinProps) {
|
||||
const { children } = props;
|
||||
return <div>{children}</div>;
|
||||
}
|
||||
Reference in New Issue
Block a user