box-ui-elements-mlh
Version:
21 lines • 549 B
JavaScript
import * as React from 'react';
import Section from './Section';
import notes from './Section.stories.md';
export var basic = function basic() {
return /*#__PURE__*/React.createElement(Section, {
title: "User Info",
description: "Your account info"
}, /*#__PURE__*/React.createElement("input", {
name: "textinput",
type: "email",
placeholder: "Enter email here"
}));
};
export default {
title: 'Components|Section',
component: Section,
parameters: {
notes: notes
}
};
//# sourceMappingURL=Section.stories.js.map