2f6c3175a3
- Add ExternalLink button to AI assistant toolbar - New route /ai-assistant-standalone renders AIAssistantPage without sidebar - Opens in new browser window via window.open
11 lines
243 B
TypeScript
11 lines
243 B
TypeScript
import React from 'react';
|
|
import { AIAssistantPage } from './AIAssistant';
|
|
|
|
export function AIAssistantStandalonePage() {
|
|
return (
|
|
<div className="h-screen w-screen overflow-hidden bg-white">
|
|
<AIAssistantPage />
|
|
</div>
|
|
);
|
|
}
|