sendou.ink/app/features/articles/loaders/a.server.ts

10 lines
203 B
TypeScript

import { mostRecentArticles } from "../core/list.server";
const MAX_ARTICLES_COUNT = 100;
export const loader = async () => {
return {
articles: await mostRecentArticles(MAX_ARTICLES_COUNT),
};
};