17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
import React from 'react';
|
|
import LiveSessionList from 'Shared/LiveSessionList';
|
|
import LiveSessionSearch from 'Shared/LiveSessionSearch';
|
|
import AssistSearchField from './AssistSearchField';
|
|
|
|
function AssistView() {
|
|
return (
|
|
<div className="w-full mx-auto" style={{ maxWidth: '1300px'}}>
|
|
<AssistSearchField />
|
|
<LiveSessionSearch />
|
|
<div className="my-4" />
|
|
<LiveSessionList />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default AssistView;
|