React hooks for atproto.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at mistress 18 lines 367 B view raw
1{ lib, buildNpmPackage }: 2 3buildNpmPackage { 4 pname = "use-atproto"; 5 version = "0.0.1"; 6 7 src = ./.; 8 9 npmDepsHash = lib.fakeHash; 10 11 meta = { 12 description = "React hooks for atproto."; 13 homepage = "https://tangled.org/sylfr.dev/use-atproto"; 14 license = lib.licenses.mit; 15 maintainers = with lib.maintainers; [ ]; 16 mainProgram = "example"; 17 }; 18}