Path: blob/master/src/packages/next/components/account/stars.tsx
1450 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { Customize } from "lib/share/customize";6import PublicPaths from "components/share/public-paths";7import { Layout } from "components/share/layout";8import A from "components/misc/A";9import { Icon } from "@cocalc/frontend/components/icon";1011interface Props {12stars;13customize;14}1516export default function Stars({ customize, stars }: Props) {17return (18<Customize value={customize}>19<Layout title={"Your Stars"}>20<h1>21<Icon name="star-filled" /> Your Stars22</h1>23You can star anything that is <A href="/share">shared publicly</A> and24it will appear in the list below.25<br />26<br />27<PublicPaths publicPaths={stars} />28</Layout>29</Customize>30);31}323334