* applied eslint * add locales and lint the project * removed error boundary * updated locales * fix min files * fix locales
19 lines
552 B
TypeScript
19 lines
552 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';
|
|
|
|
function AssistView() {
|
|
usePageTitle('Co-Browse - OpenReplay');
|
|
return (
|
|
<div className="w-full mx-auto" style={{ maxWidth: '1360px' }}>
|
|
<AssistSearchActions />
|
|
<LiveSessionSearch />
|
|
<div className="my-4" />
|
|
<LiveSessionList />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AssistView;
|