12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
export default function HomePage() {
|
|
return (
|
|
<main className="h-screen w-screen overflow-hidden bg-black">
|
|
<iframe
|
|
title="PolyWeather Legacy Dashboard"
|
|
src="/legacy/index.html"
|
|
className="h-full w-full border-0"
|
|
/>
|
|
</main>
|
|
);
|
|
}
|