multithread implementation

This commit is contained in:
YasinOnm08 2024-09-19 15:56:26 +02:00
parent fe2bfa60ce
commit 3f8841a630
5 changed files with 99 additions and 40 deletions

View file

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