UNPKG

@eureca/eureca-ui

Version:

UI component library of Eureca's user and admin apps

19 lines (13 loc) 408 B
import React from 'react'; import { number, withKnobs } from '@storybook/addon-knobs'; import { ProfileStrength } from '..'; const options = { range: true, min: 1, max: 7, step: 1, }; export default { title: 'Originals/Profile Strength', decorators: [withKnobs], includeStories: [] }; export function ProfileStrengthStory() { return <ProfileStrength value={number('Força', 1, options)} />; }