fp/packages/next/app/health/page.tsx

12 lines
260 B
TypeScript
Raw Normal View History

2024-01-20 16:16:14 +00:00
import Tes from '@/assets/svg/tes';
export default async function Page() {
return (
<div className="content">
<div className="box">
<h2>Healthy!</h2>
<Tes></Tes>
</div>
</div>
)
}