sageTheDM
91353bd051
Reviewed-on: https://interstellardevelopment.org/code/code/React-Group/interstellar_ai/pulls/137 Reviewed-by: Patrick <patrick_pluto@noreply.localhost> Co-authored-by: sageTheDM <info@photofuel.tech> Co-committed-by: sageTheDM <info@photofuel.tech>
14 lines
336 B
TypeScript
14 lines
336 B
TypeScript
// AI.tsx
|
|
import React from 'react';
|
|
import InputOutputBackend from '../backend/InputOutputHandler';
|
|
|
|
const AI: React.FC = () => {
|
|
return (
|
|
<div className="ai-container">
|
|
{/* Render the InputOutputBackend component for AI input/output handling */}
|
|
<InputOutputBackend />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AI;
|