mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-13 16:50:26 -05:00
10 lines
203 B
TypeScript
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),
|
|
};
|
|
};
|