1/* 2 * This file is part of CoCalc: Copyright © 2022 Sagemath, Inc. 3 * License: MS-RSL – see LICENSE.md for details 4 */ 5 6import { CSSProperties } from "react"; 7export type CSS = CSSProperties; 8 9// just convenience 10import { Typography } from "antd"; 11export const { Title, Paragraph, Text } = Typography; 12 13