export function createTextWidget()

in scripts/dashboard-importer/src/dashboards/converter/widgets/text.ts [20:32]


export function createTextWidget(
  title: string,
  content: string,
  format: TextFormat = 'MARKDOWN',
): Widget {
  return {
    title,
    text: {
      content,
      format,
    },
  };
}