Started changes the file structure

This commit is contained in:
sageTheDM 2024-09-20 10:34:16 +02:00
parent 464df4adac
commit 89b3b824c7
17 changed files with 12 additions and 12 deletions

15
app/components/AI.tsx Normal file
View file

@ -0,0 +1,15 @@
// AI.tsx
import React from 'react';
import InputOutputBackend from '../backend/InputOutputHandler';
const AI: React.FC = () => {
return (
<div>
<div className="ai-container">
<InputOutputBackend />
</div>
</div>
);
};
export default AI;