interstellar_ai/app/AI.tsx

14 lines
193 B
TypeScript
Raw Normal View History

2024-09-19 09:54:00 +02:00
// AI.tsx
import React from 'react';
import InputBackend from './InputBackend';
const AI: React.FC = () => {
return (
2024-09-19 12:18:04 +02:00
<div>
2024-09-19 09:54:00 +02:00
<InputBackend />
</div>
);
};
export default AI;