8 lines
225 B
XML
8 lines
225 B
XML
export default function Test() {
|
|
return (
|
|
<div style={{ padding: '20px', 'font-size': '24px' }}>
|
|
<h1>TEST - APP IS WORKING!</h1>
|
|
<p>If you see this, the basic app infrastructure works.</p>
|
|
</div>
|
|
);
|
|
}
|