@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
24 lines (20 loc) • 634 B
JSX
import React from 'react';
import createReactClass from 'create-react-class';
import IconSettings from '~/components/icon-settings';
import Textarea from '~/components/forms/textarea'; // `~` is replaced with design-system-react at runtime
const Example = createReactClass({
displayName: 'TextareaExample',
render () {
return (
<IconSettings iconPath="/assets/icons">
<Textarea
name="disabled"
label="Textarea Label"
disabled
placeholder="Placeholder Text"
/>
</IconSettings>
);
}
});
export default Example; // export is replaced with `ReactDOM.render(<Example />, mountNode);` at runtime