@storybook/addon-ondevice-backgrounds
Version:
A react-native storybook addon to show different backgrounds for your preview
10 lines (9 loc) • 341 B
TypeScript
import { ReactNode } from 'react';
import { Channel } from './BackgroundPanel';
interface ContainerProps {
initialBackground: string;
channel: Channel;
children: ReactNode;
}
declare const Container: ({ initialBackground, channel, children }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
export default Container;