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 initialNumbers = [4, 9, 12, 56, 67]; const [squareRoots, setSquareRoots] = useState([]); const calculateSquareRoots = () => { const squareRootArray = initialNumbers.map(number => Math.sqrt(number)); setSquareRoots(squareRootArray); }; return ( <div className='container'> <h3 className='title'>React Js Find Square Root of Numbers within Array</h3> <p className='number'>Square Roots: {initialNumbers.join(', ')}</p> <button onClick={calculateSquareRoots} className='button'> Calculate Square Roots </button> <p className='result'>Square Roots: {squareRoots.join(', ')}</p> </div> ); } ReactDOM.render(<App />, document.getElementById("app")); </script> <style> .container { margin: 0 auto; width: 600px; 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); padding: 20px; } /* Title Styles */ .title { font-size: 24px; text-align: center; color: #333; margin-bottom: 10px; } /* Number Styles */ .number { font-size: 16px; color: #666; margin-bottom: 10px; } /* Button Styles */ .button { display: block; width: 100%; background-color: #007bff; color: #fff; border: none; padding: 10px; border-radius: 5px; font-size: 18px; cursor: pointer; transition: background-color 0.3s; } .button:hover { background-color: #0056b3; } /* Result Styles */ .result { font-size: 18px; color: #333; margin-top: 10px; } /* Adding some space between elements */ p { margin: 0; } </style> </body> </html>