import type { MultiLang } from '../config'; import CreditsMenu from '../credits/block/CreditsMenu'; import IndexTree from '../database/blocks/IndexTree'; import Search from '../database/blocks/Search'; import Functions from '../functions'; import SelectLang from './blocks/SelectLang'; interface Props { lang: MultiLang; } const LeftColumn = (props: Props) => { const { lang } = props; const titles = { selectLang: Functions.mlang('[en]Select Language[/en][ja]言語選択[/ja]', lang), indexTree: Functions.mlang('[en]Index Tree[/en][ja]インデックスツリー[/ja]', lang), search: Functions.mlang('[en]Search[/en][ja]検索[/ja]', lang), siteInfo: Functions.mlang('[en]Site Information[/en][ja]サイト情報[/ja]', lang), }; return (