openreplay/frontend/app/components/shared/SessionListContainer/SessionListContainer.tsx
2022-08-22 12:36:14 +02:00

15 lines
385 B
TypeScript

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