13 lines
200 B
TypeScript
13 lines
200 B
TypeScript
import Stars from "@/components/stars";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<main className="w-100 m-0 h-screen">
|
|
<Stars />
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default page;
|