mirror of
https://github.com/outline/outline.git
synced 2026-06-22 15:54:23 +03:00
15 lines
487 B
JavaScript
15 lines
487 B
JavaScript
// @flow
|
|
import { type ActionContext } from "types";
|
|
|
|
export const CollectionSection = ({ t }: ActionContext) => t("Collection");
|
|
|
|
export const DebugSection = ({ t }: ActionContext) => t("Debug");
|
|
|
|
export const DocumentSection = ({ t }: ActionContext) => t("Document");
|
|
|
|
export const SettingsSection = ({ t }: ActionContext) => t("Settings");
|
|
|
|
export const NavigationSection = ({ t }: ActionContext) => t("Navigation");
|
|
|
|
export const UserSection = ({ t }: ActionContext) => t("People");
|