Reviewed By: antonk52 Differential Revision: D35114197 fbshipit-source-id: 88b35b4d927d7eca099a62d9cf4319ffe3ecf423
21 lines
405 B
TypeScript
21 lines
405 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import App from './App';
|
|
|
|
ReactDOM.render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>,
|
|
document.getElementById('root'),
|
|
);
|