Created
July 13, 2021 16:53
-
-
Save DakotaLMartinez/6aee6b480e712de4486731f08cff0aa9 to your computer and use it in GitHub Desktop.
Setters
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 characters
const [imgUrl, imgUrlSetter] = useState("https://upload.wikimedia.org/wikipedia/commons/thumb/e/ec/Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg/300px-Mona_Lisa%2C_by_Leonardo_da_Vinci%2C_from_C2RMF_retouched.jpg"); | |
const [title, titleSetter] = useState("Mona Lisa"); | |
const [artistName, artistNameSetter] = useState("Leonardo Da Vinci"); | |
const [date, dateSetter] = useState("c. 1503–1506, perhaps continuing until c. 1517"); | |
const [width, widthSetter] = useState("21"); | |
const [height, heightSetter] = useState("30"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment