Moves the archive all sessions action to the right side of the header Keeps the sessions title focused on text only
11 lines
263 B
TypeScript
11 lines
263 B
TypeScript
import React from 'react';
|
|
interface SessionsTabTitleProps {
|
|
title: string;
|
|
}
|
|
|
|
const SessionsTabTitle: React.FC<SessionsTabTitleProps> = ({ title }) => (
|
|
<h1 className="text-sm font-medium truncate" title={title}>{title}</h1>
|
|
);
|
|
|
|
export { SessionsTabTitle };
|