openreplay/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx
2022-10-03 11:08:07 +02:00

18 lines
473 B
TypeScript

import React from 'react';
import SessionList from './components/SessionList';
import SessionHeader from './components/SessionHeader';
import NotesList from './components/Notes/NoteList';
function SessionListContainer() {
return (
<div className="widget-wrapper">
<SessionHeader />
<div className="border-b" />
{/* <SessionList /> */}
<NotesList />
</div>
);
}
export default SessionListContainer;