started multithreading

This commit is contained in:
YasinOnm08 2024-09-19 13:02:56 +02:00
parent ef2e40ca4a
commit 024ceeda4e
5 changed files with 103 additions and 2 deletions

View file

@ -1,10 +1,12 @@
// AI.tsx
import React from 'react';
import InputBackend from './InputBackend';
import InputOutputBackend from './InputOutputHandler';
const AI: React.FC = () => {
return (
<div className="ai-container">
<InputOutputBackend/>
<InputBackend />
</div>
);