import * as React from 'react'; import JqxNotification from 'jqwidgets-scripts/jqwidgets-react-tsx/jqxnotification'; class App extends React.PureComponent<{}> { constructor(props: {}) { super(props); } public render() { return ( This notification's width is 80%. ); } } export default App;