import './index.css' import styles from './index.module.css' import { getCommentListAction } from './kv' import NewComment from './new-comment' export interface KvDisProps { commentsKey: string } export default async function KvDis({ commentsKey: key }: KvDisProps) { const list = await getCommentListAction(key) return (
Comment
) }