refactor: use vanilla rendering

This commit is contained in:
Pihkaal
2024-01-25 22:11:31 +01:00
parent 089c29b579
commit 64fc73a05e
8 changed files with 250 additions and 81 deletions

View File

@@ -0,0 +1,9 @@
export type Cell = {
char: string;
} & CellStyle;
export type CellStyle = Partial<{
foreground: string;
background: string;
fontWeight: number;
}>;