12 lines
173 B
TypeScript
Raw Normal View History

2024-05-12 06:00:04 +07:00
import ServerSection from "./components/server-section";
const HomePage = () => {
return (
<div>
<ServerSection />
</div>
);
};
export default HomePage;