You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
377 B
14 lines
377 B
import React from 'react';
|
|
|
|
function TestComponent() {
|
|
return (
|
|
<div style={{ padding: '24px' }}>
|
|
<h1>Hello World!</h1>
|
|
<p>This is a simple test component.</p>
|
|
<p>It doesn't use any Redux, React Router, or complex logic.</p>
|
|
<p>If you see this page, it means the React app is working correctly.</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default TestComponent; |