File size: 540 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import { creativeArtsBlogs } from './creative-arts';
import { industryBlogs } from './industry';
import { lifestyleBlogs } from './lifestyle';
import { societyBlogs } from './society';
import { technologyBlogs } from './technology';
export const curatedBlogs = {
...lifestyleBlogs,
...technologyBlogs,
...creativeArtsBlogs,
...societyBlogs,
...industryBlogs,
};
export type CuratedBlog = {
feed_ID: number;
site_ID: number;
site_URL: string;
site_name: string;
};
export type CuratedBlogsList = Record< string, CuratedBlog[] >;
|