UNPKG

@teamsparta/blog-system

Version:
10 lines (9 loc) 291 B
/// <reference types="react" /> import { StoryDto } from "../../dto"; type StoryListProps = { storyList: StoryDto[]; serviceType: string; nextVersion: number; }; export default function StoryList({ storyList, serviceType, nextVersion, }: StoryListProps): JSX.Element; export {};