import React from "react"; function App(){ const [countGet, countSet] = React.useState(2); return <>

test paragraph

} const Other =()=> { return

other app component

} export default function Root() { return

rooted

}