import { defaultTheme, theme } from "../style/theme";
export function StoryWrapper({ children }) {
    return (<div className={defaultTheme} style={{
            background: theme.color.canvas.main,
            height: "100%",
        }}>
			{children}
		</div>);
}
