mirror of
https://github.com/microsoft/playwright.git
synced 2024-11-24 06:49:04 +03:00
34 lines
1011 B
HTML
34 lines
1011 B
HTML
<head>
|
|
<script src="./react/react@16.13.1.production.min.js"></script>
|
|
<script src="./react/react-dom@16.13.1.production.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class='react-root'></div>
|
|
<script>
|
|
window.e = React.createElement;
|
|
window.reactRoot = document.querySelector('.react-root');
|
|
window.renderComponent = c => ReactDOM.render(c, window.reactRoot);
|
|
|
|
window.MyButton = class MyButton extends React.Component {
|
|
constructor(props) {
|
|
super(props);
|
|
this.state = { hovered: false };
|
|
}
|
|
render() {
|
|
return e('button', {
|
|
disabled: !!this.props.disabled,
|
|
onClick: () => {
|
|
window[this.props.name] = true;
|
|
},
|
|
onMouseEnter: () => {
|
|
if (this.props.renameOnHover)
|
|
this.setState({ hovered: true });
|
|
if (this.props.onHover)
|
|
this.props.onHover();
|
|
},
|
|
}, this.state.hovered ? 'Hovered' : this.props.name);
|
|
}
|
|
};
|
|
</script>
|
|
</body>
|