wix-style-react
Version:
24 lines (22 loc) • 895 B
JavaScript
import React from 'react';
import RichTextInputArea from '..';
import { StorybookComponents } from 'wix-storybook-utils/StorybookComponents';
export default () => (
<StorybookComponents.Stack width="50%">
<RichTextInputArea
initialValue="It’s important to warm up. Nothing fancy, a brisk walk for 5 minutes is enough.
Then the fun starts. Do each exercise at maximum intensity for 30 seconds.
<strong><em>Rest for 10 seconds between exercises.</em></strong><br/>
<ol>
<li>Jumping Jacks</li>
<li>Wall Sit</li>
<li>Push-Ups</li>
<li>Crunches</li>
<li>Step Ups (use a sturdy chair)</li>
<li>Squats</li>
<li>Side plank (15 sec on each side)</li>
</ol>
<em>Give yourself a cool down — walking for five minutes is perfect — and a pat on the back!</em>"
/>
</StorybookComponents.Stack>
);