ui: fixes for picking existing chat, feedback and retry buttons ui: connect finding, creating threads ui: more ui tuning for chat window, socket manager ui: get/delete chats logic, create testing socket ui: testing ui: use on click query ui: minor fixed for chat display, rebase ui: start kai thing
20 lines
619 B
TypeScript
20 lines
619 B
TypeScript
import React from 'react';
|
|
import LiveSessionList from 'Shared/LiveSessionList';
|
|
import LiveSessionSearch from 'Shared/LiveSessionSearch';
|
|
import usePageTitle from '@/hooks/usePageTitle';
|
|
import AssistSearchActions from './AssistSearchActions';
|
|
import { PANEL_SIZES } from 'App/constants/panelSizes'
|
|
|
|
function AssistView() {
|
|
usePageTitle('Co-Browse - OpenReplay');
|
|
return (
|
|
<div className="w-full mx-auto" style={{ maxWidth: PANEL_SIZES.maxWidth }}>
|
|
<AssistSearchActions />
|
|
<LiveSessionSearch />
|
|
<div className="my-4" />
|
|
<LiveSessionList />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AssistView;
|