Work on note component
All checks were successful
/ docker (push) Successful in 1m57s

This commit is contained in:
Melody Becker 2025-07-18 11:27:20 +02:00
parent 369453794b
commit 594f87f240
14 changed files with 226 additions and 43 deletions

View file

@ -0,0 +1,7 @@
export interface RemoteServer {
id: string;
name: string;
url: string;
isSelf: boolean;
isDead: boolean;
}