10 lines
158 B
TypeScript
10 lines
158 B
TypeScript
import PublishList from "@/components/PublishList/PublishList";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<PublishList/>
|
|
</div>
|
|
);
|
|
}
|