Skip to content

Instantly share code, notes, and snippets.

View rajesh-ae's full-sized avatar

Rajesh Venkatesan rajesh-ae

View GitHub Profile
@rajesh-ae
rajesh-ae / App.js
Last active August 17, 2024 18:55
Interactive Plotly plots in FrontEnd from FastAPI Python BackEnd
import MyPlot from "./Components/MyPlot";
function App() {
return (
<div>
<h1>My dashboard</h1>
<MyPlot />
</div>
);
}