mirror of https://github.com/rancher/dashboard.git
13 lines
333 B
JavaScript
13 lines
333 B
JavaScript
import LabeledInput from '@/components/form/LabeledInput';
|
|
|
|
export default {
|
|
title: 'Components/Forms',
|
|
component: LabeledInput,
|
|
decorators: [],
|
|
};
|
|
|
|
export const labeledInput = () => ({
|
|
components: { LabeledInput },
|
|
template: `<LabeledInput type='text' label='Sample Label' placeholder='Sample Placeholder'/>`,
|
|
});
|