11 lines
187 B
TypeScript
11 lines
187 B
TypeScript
import React from 'react'
|
|
|
|
export function HistorySidebar() {
|
|
return (
|
|
<aside
|
|
id="history-file-tree"
|
|
className="ide-react-editor-sidebar history-file-tree"
|
|
/>
|
|
)
|
|
}
|