This commit is contained in:
Shusui MOYATANI
2023-03-23 09:23:52 +09:00
parent 3348bba012
commit 04eaa5b0ad
10 changed files with 716 additions and 2815 deletions

View File

@@ -1,5 +1,7 @@
import { Component } from 'solid-js';
import { noteEncode } from 'nostr-tools/nip19';
import { nip19 } from 'nostr-tools';
const { noteEncode } = nip19;
type EventLinkProps = {
eventId: string;

View File

@@ -1,5 +1,4 @@
import { Switch, Match, type Component } from 'solid-js';
import { noteEncode } from 'nostr-tools/nip19';
import TextNoteDisplay, { type TextNoteDisplayProps } from '@/components/textNote/TextNoteDisplay';