mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 16:38:20 +01:00
13 lines
364 B
TypeScript
13 lines
364 B
TypeScript
|
|
export const useConfig = () => {
|
||
|
|
return {
|
||
|
|
NOTES_PER_PAGE: 20,
|
||
|
|
RECOMMENDED_CLIENTS: [
|
||
|
|
{
|
||
|
|
name: "Megalodon",
|
||
|
|
icon: "https://sk22.github.io/megalodon/mastodon/src/main/res/mipmap-xhdpi/ic_launcher_round.png",
|
||
|
|
link: "https://sk22.github.io/megalodon/",
|
||
|
|
},
|
||
|
|
],
|
||
|
|
};
|
||
|
|
};
|