Вам нужно передать JSX движку рендеринга. Я собрал пример :
import React from "react";
import ReactDOM from "react-dom";
import App from "./App";
const rootElement = document.getElementById("root");
// If I tried to execute this line it would fail (see the Problems tab)
<App />;
// But this works (because you need an engine to render JSX)
ReactDOM.render(<App />, rootElement);
Если вы выполняете рендеринг в компоненте, вам нужно вернуть JSX:
const Test = () => (
<Alert>My Alert</Alert>
)
// or more verbosely
const Test2 = () => {
return <Alert>My Alert</Alert>
}
Надеюсь, что это поможет!