gc-guide/src/App.tsx

17 lines
430 B
TypeScript
Raw Normal View 히스토리

function App() {
return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
<div className="text-center">
<h1 className="text-4xl font-bold text-gray-900 mb-4">
GC SI
</h1>
<p className="text-lg text-gray-600">
</p>
</div>
</div>
)
}
export default App