21 lines
388 B
React
21 lines
388 B
React
function App() {
|
|
return (
|
|
<div
|
|
style={{
|
|
display: 'flex',
|
|
flexDirection: 'column',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
height: '100vh',
|
|
}}
|
|
>
|
|
<h1>Build works when pushing to dev.</h1>
|
|
<h1>Now time to try pushing to main and deploy.</h1>
|
|
<h2>Okay, everything works just fine.</h2>
|
|
<h3> one more</h3>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|