mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-09-09 03:09:11 +00:00
14 lines
372 B
TypeScript
14 lines
372 B
TypeScript
// Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
import React from "react";
|
|
import ReactDOM from "react-dom/client";
|
|
import App from "./App";
|
|
import "./index.css";
|
|
|
|
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
|
|
<React.StrictMode>
|
|
<App />
|
|
</React.StrictMode>
|
|
);
|