buster/apps/web/src/components/ui/report/plugins/buster-stream-kit.tsx

12 lines
273 B
TypeScript
Raw Normal View History

2025-08-08 12:04:50 +08:00
'use client';
2025-08-06 07:05:27 +08:00
import { BannerPlugin } from './banner-plugin';
2025-08-06 05:15:52 +08:00
import { CharacterCounterPlugin } from './character-counter-kit';
2025-08-07 01:00:26 +08:00
import { MetricPlugin } from './metric-plugin';
2025-08-06 04:43:37 +08:00
2025-08-06 07:05:27 +08:00
export const BusterStreamKit = [
//BannerPlugin,
CharacterCounterPlugin,
2025-08-07 01:00:26 +08:00
MetricPlugin
2025-08-06 07:05:27 +08:00
];