screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <script src="https://cdnjs.cloudflare.com/ajax/libs/react/17.0.2/umd/react.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.development.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/babel-standalone/6.26.0/babel.min.js"></script> </head> <body> <div id="app"></div> <script type="text/babel"> const { useState } = React; function App() { const [function1Value, setFunction1Value] = useState(''); const [function2Value, setFunction2Value] = useState(''); const [function3Value, setFunction3Value] = useState(''); const function1 = () => { setFunction1Value('function 1 called'); }; const function2 = () => { // Implement function2 logic here setFunction2Value('function 2 called'); }; const function3 = () => { // Implement function3 logic here setFunction3Value('function 3 called'); }; return ( <div className='container'> <h3>React Js Call Multiple Function onclick</h3> <button onClick={() => { // Call multiple functions here function1(); function2(); function3(); }}>Click me</button> <p> {function1Value}</p> <p> {function2Value}</p> <p> {function2Value}</p> </div> ); } ReactDOM.render(<App />, document.getElementById('app')); </script> <style> .container { text-align: center; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); width: 600px; margin: 0 auto; } button { padding: 10px 20px; background-color: #4CAF50; color: #fff; border: none; border-radius: 5px; font-size: 16px; cursor: pointer; margin-bottom: 10px } </style> </body> </html>