import React from 'react';
import { action } from '@storybook/addon-actions';
import Examples from './utils/Examples.js';
import ReactInput from '../../src/react/Input.js';
import InputDefaultHtml from '../../components/input/input.html';
import InputRequiredHtml from '../../components/input/input-required.html';
import InputNumberHtml from '../../components/input/input-number.html';
import InputViewOnlyHtml from '../../components/input/input-view-only.html';
import InputDisabledHtml from '../../components/input/input-disabled.html';
import InputPlaceholderHtml from '../../components/input/input-placeholder.html';
import InputErrorHtml from '../../components/input/input-error.html';
let examples = {
'Input Default': {
jsx: ,
html: InputDefaultHtml
},
'Input Required': {
jsx: ,
html: InputRequiredHtml
},
'Input Number': {
jsx: ,
html: InputNumberHtml
},
'Input View Only': {
jsx: ,
html: InputViewOnlyHtml
},
'Input Disabled': {
jsx: ,
html: InputDisabledHtml
},
'Input Placeholder': {
jsx: ,
html: InputPlaceholderHtml
},
'Input Error': {
jsx: ,
html: InputErrorHtml
}
}
const Inputs = () => (
);
export default Inputs;