This commit is contained in:
Luiz Silva 2026-01-27 12:07:22 -03:00
parent 8bb5aea15e
commit 24c07da6f8
17 changed files with 1458 additions and 371 deletions

View file

@ -0,0 +1,7 @@
import type { VNodeChild } from "vue";
export type EliCelulaTextoSimples = { tipo: "texto-simples"; texto: string };
export const renderEliCelulaTextoSimples = (
celula: EliCelulaTextoSimples
): VNodeChild => celula.texto;