import React from "react";
import { render } from "react-dom";
const App = () => {
const s = 'Arrow Function';
return <AFunction value={s} />;
};
const AFunction = ({ value }) => {
return <h1>{value}</h1>;
};
render(<App />, document.getElementById("root"));
/*
run:
Arrow Function
*/