15 lines
385 B
TypeScript
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;
|