flare-api
Version:
A modern, fast, and intuitive Node.js framework for building APIs
19 lines (16 loc) • 579 B
JavaScript
import React from 'react';
import { IAChat } from './IAChat';
export const BackofficeMain = () => {
return (
<div style={{ display: 'flex', justifyContent: 'space-between' }}>
<div style={{ width: '70%' }}>
<h1>Welcome to FlareApi.js Backoffice</h1>
<p>This is your admin panel where you can manage entities, users, and more.</p>
{/* Add more admin functionality here */}
</div>
<div style={{ width: '30%' }}>
<IAChat />
</div>
</div>
);
};