1 2 3 4 5 6 7 8 9 10
import React from "react"; const App = () => { const txt = "sldjflksjdfljsd"; return ( <p>{txt}</p> ) } export default App