import * as React from 'react'; import { Renderer, Tester } from './../interfaces'; import globalStyle from './../styles.css' import WithHeader from './wrappers/withHeader'; import WithSeeMore from './wrappers/withSeeMore'; export const renderer: Renderer = ({ story, action }) => { React.useEffect(() => { action('play'); }, [story]) return

This story could not be loaded.

} const styles = { storyContent: { width: "100%", maxHeight: "100%", margin: "auto" }, text: { textAlign: 'center', color: 'white', width: '90%', margin: 'auto' } }; export const tester: Tester = () => { return { condition: true, priority: 1 }; } export default { renderer, tester }