You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1000 B
39 lines
1000 B
7 years ago
|
/**
|
||
|
* Copyright (c) 2013-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*
|
||
|
* @emails react-core
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
import Container from 'components/Container';
|
||
|
import Header from 'components/Header';
|
||
|
import React from 'react';
|
||
|
import {sharedStyles} from 'theme';
|
||
|
|
||
|
const JsxCompiler = () => (
|
||
|
<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>
|
||
|
);
|
||
|
|
||
|
export default JsxCompiler;
|