* fix(ui): session tags issue type to be lowercase * fix(ui): bookmarks separation and other page titles
19 lines
544 B
TypeScript
19 lines
544 B
TypeScript
import React from 'react';
|
|
import LiveSessionList from 'Shared/LiveSessionList';
|
|
import LiveSessionSearch from 'Shared/LiveSessionSearch';
|
|
import AssistSearchField from './AssistSearchField';
|
|
import usePageTitle from '@/hooks/usePageTitle';
|
|
|
|
function AssistView() {
|
|
usePageTitle('Co-Browse - OpenReplay');
|
|
return (
|
|
<div className="w-full mx-auto" style={{ maxWidth: '1360px'}}>
|
|
<AssistSearchField />
|
|
<LiveSessionSearch />
|
|
<div className="my-4" />
|
|
<LiveSessionList />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AssistView;
|