src/pages/jsx-compiler.html.js (24 lines of code) (raw):

/** * Copyright (c) Facebook, Inc. and its affiliates. * * @emails react-core * @flow */ import Layout from 'components/Layout'; import Container from 'components/Container'; import Header from 'components/Header'; import React from 'react'; import {sharedStyles} from 'theme'; type Props = { location: Location, }; const JsxCompiler = ({location}: Props) => ( <Layout location={location}> <Container> <div css={sharedStyles.articleLayout.container}> <div css={sharedStyles.articleLayout.content}> <Header>JSX Compiler Service</Header> <div css={sharedStyles.markdown}> <p> <strong> This tool has been removed as JSXTransformer has been deprecated. </strong> </p> <p> We recommend using another tool such as{' '} <a href="https://babeljs.io/repl">the Babel REPL</a>. </p> </div> </div> </div> </Container> </Layout> ); export default JsxCompiler;