Render front components in a widget. https://github.com/user-attachments/assets/1ae130a4-070d-498e-88f7-80cee847e2fa --------- Co-authored-by: Charles Bochet <charles@twenty.com>
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import { type SourceFile } from 'ts-morph';
|
|
|
|
export const addStatement = (
|
|
sourceFile: SourceFile,
|
|
statement: string,
|
|
): void => {
|
|
sourceFile.addStatements(statement);
|
|
};
|