/******************************************************************************** * Copyright (c) 2020 TypeFox and others * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * http://www.eclipse.org/legal/epl-2.0. * * SPDX-License-Identifier: EPL-2.0 ********************************************************************************/ import { FunctionComponent } from 'react'; import { Link, Typography, Container } from '@mui/material'; import { styled, Theme } from '@mui/material/styles'; const Heading = styled(Typography)(({ theme }: { theme: Theme }) => ({ marginTop: theme.spacing(4) })); const Paragraph = styled(Typography)(({ theme }: { theme: Theme }) => ({ margingTop: theme.spacing(2) })); const About: FunctionComponent = () => { return About This Service Open VSX is an open-source registry for VS Code extensions. It can be used by any development environment that supports such extensions. See this article for more information. This instance of Open VSX uses the default UI from the openvsx-webui npm package, which is also included in the openvsx-webui Docker image. ; }; export default About;