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> <body> <div id="app"></div> <script type="text/babel"> function App() { // Get today's date const today = new Date(); // Subtract one day in milliseconds to get yesterday's date const yesterday = new Date(today); yesterday.setDate(today.getDate() - 1); // Format the date to a string in the desired format (e.g., "YYYY-MM-DD") const formattedYesterday = yesterday.toISOString().slice(0, 10); return ( <div className='container'> <h1>React Js Get Yesterday's Date</h1> <p>Yesterday Date : {formattedYesterday}</p> </div> ); } ReactDOM.render(<App />, document.getElementById("app")); </script> <style> /* Styling for the container */ .container { max-width: 800px; margin: 0 auto; padding: 20px; font-family: Arial, sans-serif; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.12), 0 2px 4px 0 rgba(0, 0, 0, 0.24); } /* Styling for the header */ h2 { font-size: 24px; margin-bottom: 20px; text-align: center; } </style> </body> </html>