13 lines
361 B
TypeScript
13 lines
361 B
TypeScript
import React from 'react';
|
|
|
|
export function AutomationPlaceholderPage() {
|
|
return (
|
|
<div className="max-w-4xl mx-auto">
|
|
<h1 className="text-2xl font-bold text-secondary-900 mb-4">Automation</h1>
|
|
<p className="text-secondary-600">
|
|
Diese Seite wird gerade erstellt. Wählen Sie ein Thema aus dem Menü links.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|