interstellar_ai/app/AI.tsx
2024-09-19 12:18:04 +02:00

13 lines
193 B
TypeScript

// AI.tsx
import React from 'react';
import InputBackend from './InputBackend';
const AI: React.FC = () => {
return (
<div>
<InputBackend />
</div>
);
};
export default AI;