UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

1 lines 569 B
module.exports = "import * as React from 'react';\nimport {\n Button,\n Label\n} from '../../../../index';\nimport { IButtonProps } from './IButtonProps';\n\nexport class ButtonNormalExample extends React.Component<IButtonProps, {}> {\n public constructor() {\n super();\n }\n\n public render() {\n let { isDisabled } = this.props;\n\n return (\n <div className='ms-BasicButtonsExample'>\n <Label>Normal button</Label>\n <Button data-automation-id='test' disabled={ isDisabled }>Create account</Button>\n </div>\n );\n }\n}\n";