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

test paragraph

} export const Other =()=>{ return

other app component

} export default function Root() { return

rooted

}