@teamsparta/blog-system
Version:
13 lines (12 loc) • 402 B
TypeScript
/// <reference types="react" />
import { StoryDto } from "../../dto";
type PopularPostsProps = {
popularList: StoryDto[];
serviceType: string;
nextVersion: number;
sendLog: (action: string, data: {
[dataName: string]: string;
}) => void;
};
export default function PopularPosts({ popularList, serviceType, nextVersion, sendLog }: PopularPostsProps): JSX.Element;
export {};