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