12 lines
415 B
React
12 lines
415 B
React
|
|
export default function BossCrystalAdmin() {
|
||
|
|
return (
|
||
|
|
<div className="space-y-4">
|
||
|
|
<h2 className="text-lg font-semibold">보스 결정석 관리</h2>
|
||
|
|
<p className="text-sm text-gray-500">보스 정보 및 결정석 가격을 관리합니다</p>
|
||
|
|
<div className="rounded-2xl border border-white/5 bg-gray-900/40 p-12 text-center text-gray-500">
|
||
|
|
준비 중
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
)
|
||
|
|
}
|