mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-06-01 05:11:34 +02:00
* Improve landmarks for the Project Dasbhboard * Improve landmarks for the IDE page * Improve landmarks for the new redesigned IDE page * Sort locales * Fix typo OlButtonToolbar -> OLButtonToolbar * Update project navbar translation * Update labels * Redundant main landmark * Fix failing test * Descriptive name for the rails tab * Header should not be in a button * Update translation to Account and help * Update translation to Project categories and tags * Add explanations * Show landmark for the survey widget when it's rendered * Suggestions for nav stretch/scroll/borders * Source format --------- Co-authored-by: Antoine Clausse <antoine.clausse@overleaf.com> GitOrigin-RevId: d05a738e782d2edb229529aadf92b9004dfd973a
14 lines
311 B
TypeScript
14 lines
311 B
TypeScript
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
export function HistorySidebar() {
|
|
const { t } = useTranslation()
|
|
return (
|
|
<nav
|
|
id="history-file-tree"
|
|
className="ide-react-editor-sidebar history-file-tree"
|
|
aria-label={t('project_files_history')}
|
|
/>
|
|
)
|
|
}
|