11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
import React from "react";
|
|
|
|
function App() {
|
|
return (
|
|
<div className="min-h-screen bg-blue-500 flex items-center justify-center">
|
|
<p className="text-3xl font-bold text-white">Hello, world!</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|