2024-09-19 09:54:00 +02:00
|
|
|
// AI.tsx
|
|
|
|
import React from 'react';
|
2024-09-20 10:34:16 +02:00
|
|
|
import InputOutputBackend from '../backend/InputOutputHandler';
|
2024-09-19 09:54:00 +02:00
|
|
|
|
|
|
|
const AI: React.FC = () => {
|
|
|
|
return (
|
2024-09-19 12:18:04 +02:00
|
|
|
<div>
|
2024-09-19 13:17:54 +02:00
|
|
|
<div className="ai-container">
|
2024-09-19 15:56:26 +02:00
|
|
|
<InputOutputBackend />
|
2024-09-19 13:17:54 +02:00
|
|
|
</div>
|
2024-09-19 09:54:00 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2024-09-19 13:17:54 +02:00
|
|
|
export default AI;
|