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>
|
||
|
|
);
|
||
|
|
}
|