Formatting / Intl

This commit is contained in:
2023-08-24 16:55:36 +01:00
parent 4b85a16904
commit 9c5d1ea55d
10 changed files with 134 additions and 73 deletions

View File

@ -38,7 +38,9 @@ export function UserPosts(props: { pubkey: string }) {
}
export function MyApp() {
return <SnortContext.Provider value={System}>
<UserPosts pubkey="63fe6318dc58583cfe16810f86dd09e18bfd76aabc24a0081ce2856f330504ed" />
</SnortContext.Provider>;
return (
<SnortContext.Provider value={System}>
<UserPosts pubkey="63fe6318dc58583cfe16810f86dd09e18bfd76aabc24a0081ce2856f330504ed" />
</SnortContext.Provider>
);
}