7 lines
227 B
TypeScript
7 lines
227 B
TypeScript
import type { VNodeChild } from "vue";
|
|
|
|
export type EliCelulaTextoSimples = { tipo: "texto-simples"; texto: string };
|
|
|
|
export const renderEliCelulaTextoSimples = (
|
|
celula: EliCelulaTextoSimples
|
|
): VNodeChild => celula.texto;
|