interstellar_ai/app/components/AI.tsx

13 lines
250 B
TypeScript
Raw Normal View History

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 (
<div className="ai-container">
2024-09-19 15:56:26 +02:00
<InputOutputBackend />
</div>
2024-09-19 09:54:00 +02:00
);
};
export default AI;