16 lines
459 B
TypeScript
16 lines
459 B
TypeScript
import React from 'react';
|
|
|
|
const AIPanel: React.FC = () => {
|
|
return (
|
|
<div className="h-full bg-dark-800 border-l border-dark-700 flex flex-col">
|
|
<div className="p-4 border-b border-dark-700">
|
|
<h3 className="text-lg font-semibold">AI Assistant</h3>
|
|
</div>
|
|
<div className="flex-1 p-4">
|
|
<div className="text-sm text-dark-400">AI chat interface will be here</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AIPanel;
|