@teamsparta/blog-system
Version:
17 lines (16 loc) • 594 B
TypeScript
/// <reference types="react" />
import { StoryDetailDTO, StoryDto } from "../../dto";
type StoryContentProps = {
blogPost: StoryDetailDTO;
bannerAlt: string;
popularList: StoryDto[];
currentUrl: string;
increaseStroyView: (arg: string) => void;
serviceType: string;
nextVersion: number;
sendLog: (action: string, data: {
[dataName: string]: string;
}) => void;
};
export default function StoryContent({ blogPost, bannerAlt, popularList, currentUrl, increaseStroyView, serviceType, nextVersion, sendLog, }: StoryContentProps): JSX.Element;
export {};