Add wasm-mutator-fuzz test (#3420)
This commit is contained in:
13
tests/fuzz/wasm-mutator-fuzz/portal/src/main.tsx
Normal file
13
tests/fuzz/wasm-mutator-fuzz/portal/src/main.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
// 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>
|
||||
);
|
||||
Reference in New Issue
Block a user