Started changes the file structure
This commit is contained in:
parent
464df4adac
commit
89b3b824c7
17 changed files with 12 additions and 12 deletions
15
app/components/AI.tsx
Normal file
15
app/components/AI.tsx
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue