changes
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
'use server'
|
||||
|
||||
import { ReactNode } from "react"
|
||||
import AuthHandler from "../authHandler"
|
||||
import { Post } from "@/model/Post"
|
||||
import { constructAPIUrl } from "@/util/Utils"
|
||||
|
||||
type Props = {
|
||||
children?:ReactNode
|
||||
}
|
||||
|
||||
export default async function PostView(props:Props){
|
||||
// const posts = await Post.findAll();
|
||||
|
||||
|
||||
return (
|
||||
<div>
|
||||
test
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user