CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/colorpicker.tsx
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
/*
7
8
This used to be a from scratch color picker that Travis Scholl
9
and Vivek Venkatachalam wrote. I replaced it by a flexible color
10
picker using the react-color module.
11
*/
12
13
import ColorPicker from "@cocalc/frontend/components/color-picker";
14
export { ColorPicker };
15
16