Files
smart-cropx-ui/src/app/(app)/central-config/message/template/components/MessageTemplateInfo.tsx
2025-11-10 09:19:56 +08:00

22 lines
805 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use client';
import { Card } from '@/components/ui/card';
import { MessageSquare } from 'lucide-react';
export function MessageTemplateInfo() {
return (
<Card className="p-4 bg-blue-50 border-blue-200">
<h4 className="text-blue-900 mb-2">
<MessageSquare className="w-4 h-4 inline mr-2" />
</h4>
<ul className="space-y-1 text-sm text-blue-800">
<li> </li>
<li> 使 {'{{变量名}}'} </li>
<li> </li>
<li> 便</li>
<li> 使</li>
</ul>
</Card>
);
}