Я новичок в Реагировании. Я пытаюсь добавить ссылки в выпадающее меню React Semantic UI. Ниже приведен компонент, который я извлек из семантического интерфейса React
import React from "react";
import { Dropdown } from "semantic-ui-react";
import { BrowserRouter as Router, Route, Link } from "react-router-dom";
const trigger = (
<span style={{ marginTop: "2px" }}>
<i aria-hidden="true" class="user big icon" size="big" />
</span>
);
const options = [
{ key: "user", text: "Account", icon: "user", to: "/accounts" },
{ key: "settings", text: "Settings", icon: "settings", to: "/settings" },
{ key: "sign-out", text: "Sign Out", icon: "sign out", to: "/sign-out" }
];
const DropdownMenu = () => (
<Dropdown
trigger={trigger}
options={options}
pointing="top right"
icon={null}
/>
);
export default DropdownMenu;
Я попытался добавить ключевое слово "to" в массив параметров и добавил пути к маршрутизатору, который находится в другом компоненте, но он не работает. Любая помощь будет оценена, спасибо.