Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.
Path: blob/master/src/packages/frontend/components/index.tsx
Views: 687
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Typography } from "antd";67import AIAvatar from "./ai-avatar";8import CopyToClipBoard from "./copy-to-clipboard";9import Delay from "./delay";1011export type { MenuItems } from "./dropdown-menu";1213export { MarkdownInput } from "../markdown/markdown-input/main";14export { A } from "./A";15export { ActivityDisplay } from "./activity-display";16export { CloseX } from "./close-x";17export { CloseX2 } from "./close-x2";18export { UNIT, build_date, smc_git_rev, smc_version } from "./constants";19export { DateTimePicker } from "./date-time-picker";20export { DropdownMenu, MenuDivider, MenuItem } from "./dropdown-menu";21export { ErrorDisplay } from "./error-display";22export { Gap } from "./gap";23export { HelpIcon } from "./help-icon";24export * from "./hidden-visible";25export { HTML } from "./html";26export { Icon, IconName, isIconName } from "./icon";27export { LabeledRow } from "./labeled-row";28export { LLMNameLink } from "./llm-plain-link";29export { Loading, Estimate as LoadingEstimate } from "./loading";30export { LoginLink } from "./login-link";31export { MarkAll } from "./mark-all";32export { Markdown } from "./markdown";33export { NoWrap } from "./nowrap";34export { NumberInput } from "./number-input";35export { PathLink } from "./path-link";36export { ProfileIcon } from "./profile-icon";37export { ProjectState } from "./project-state";38export { QuestionMarkText } from "./question-mark-text";39export { r_human_list } from "./r_human_list";40export { r_join } from "./r_join";41export { RawPrompt } from "./raw-prompt";42export { Saving } from "./saving";43export { SearchInput } from "./search-input";44export { SelectorInput } from "./selector-input";45export { SettingBox } from "./setting-box";46export { SimpleX } from "./simple-x";47export { SkinnyError } from "./skinny-error";48export * from "./table-of-contents";49export { TextInput } from "./text-input";50export { TimeAgo, TimeAgoElement, is_different_date } from "./time-ago";51export { TimeElapsed } from "./time-elapsed";52export { Tip } from "./tip";53export { UncommittedChanges } from "./uncommited-changes";54export { UPGRADE_ERROR_STYLE, UpgradeAdjustor } from "./upgrade-adjustor";5556export { AIAvatar, CopyToClipBoard, Delay };5758export const { Text, Title, Paragraph } = Typography;596061