Created
December 29, 2022 16:27
Revisions
-
Hacking-NASSA-with-HTML created this gist
Dec 29, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ import './App.css'; function App() { const title = 'Welcome to the blog!' const likes = 50 // const person = { name: 'Yoshi', age: 30 } const link = "https://google.com" return ( <div className="App"> <div className="content"> <h1>{title}</h1> <p>Liked {likes} times</p> {/* <p>{person}</p> */} <p>{10}</p> <p>{"Hello, ninjas"}</p> <p>{[1, 2, 3, 4, 5]}</p> <p>{Math.random() * 10}</p> <a href={link}>Google Site</a> </div> </div> ) } export default App