Started the Rework

This commit is contained in:
Sage The DM 2024-09-19 09:54:00 +02:00
parent 2327fc343a
commit a2c960b710
11 changed files with 177 additions and 61 deletions

13
app/AI.tsx Normal file
View file

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