14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
/**
|
|
* AutomationLogsView
|
|
*
|
|
* Placeholder view for automation execution logs.
|
|
*/
|
|
import React from 'react';
|
|
import styles from '../../FeatureView.module.css';
|
|
|
|
export const AutomationLogsView: React.FC = () => (
|
|
<div className={styles.placeholder}>
|
|
<h2>Execution Logs</h2>
|
|
<p>Automatisierungs-Ausführungsprotokolle</p>
|
|
</div>
|
|
);
|