Currently, the button is displaying in the top left corner. How can I move the button to the center of the page?
import {Button} from '@mui/material';
function App() {
return (
<Button variant="contained">Hello World</Button>
);
}
export default App;
I attempted the code above but it seems like additional adjustments are needed to properly center it.