Files
ksan 0574d08d57
CI/CD / build (push) Successful in 11s
CI/CD / deploy (push) Successful in 9s
one more
2026-06-01 13:22:49 +02:00

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;