Files
openchamber/packages/ui/src/components/session/SessionsTabTitle.tsx
T
Bohdan Triapitsyn 2c0749ef1d fix: align archive all action in VS Code header
Moves the archive all sessions action to the right side of the header
Keeps the sessions title focused on text only
2026-06-10 15:28:24 +03:00

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 };