Files
whats-the-point/frontend/src/main.jsx
Mike Johnston 787c97a52f
Some checks failed
Build Images and Deploy / Update-PROD-Stack (push) Failing after 17s
initial commit
2026-01-28 23:52:15 -05:00

10 lines
286 B
JavaScript

import React from 'react';
import ReactDOM from 'react-dom/client';
const App = () => <div style={{fontFamily: 'sans-serif', padding: 24}}>
<h1>What's The Point</h1>
<p>Welcome! The app is running.</p>
</div>;
ReactDOM.createRoot(document.getElementById('root')).render(<App />);