8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
|
|
import Posts from "./posts.json";
|
||
|
|
import type { Post } from "~/types";
|
||
|
|
|
||
|
|
export const posts: Post[] = Posts.map((p: Post) => ({
|
||
|
|
...p,
|
||
|
|
date: new Date(p.date),
|
||
|
|
}));
|