17 lines
430 B
TypeScript
17 lines
430 B
TypeScript
|
|
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
|