import * as React from 'react'; import { DemoSection } from '../../typings/story-section'; import { SkeletonRectangle } from '../../SkeletonRectangle/SkeletonRectangle'; import styles from '../styles.scss'; export const demo = (props: DemoSection) => { const DemoComponent = props.component; return (
{props.loading ? ( ) : typeof DemoComponent === 'function' ? ( ) : ( DemoComponent )}
); };