interstellar_ai/app/components/AI.tsx
2024-10-07 16:41:31 +02:00

17 lines
No EOL
348 B
TypeScript

// AI.tsx
import React from 'react';
import InputOutputBackend from '../backend/InputOutputHandler';
interface AIProps{
selectedIndex:number
}
const AI: React.FC<AIProps> = ({selectedIndex}) => {
return (
<div className="ai-container">
<InputOutputBackend selectedIndex={selectedIndex}/>
</div>
);
};
export default AI;