Skip to content

Instantly share code, notes, and snippets.

View TidbitsJS's full-sized avatar
:octocat:
Keep Coding

Sujata Gunale TidbitsJS

:octocat:
Keep Coding
View GitHub Profile
@TidbitsJS
TidbitsJS / index.css
Last active November 9, 2023 16:13
3D Portfolio Gists
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--blue-rgb: 237 245 255;
--green-rgb: 125 161 35;
}
@TidbitsJS
TidbitsJS / dont.js
Created August 26, 2021 19:18
Don'ts in useEffect
// this does not work, don't do this:
React.useEffect(async () => {
const result = await doSomeAsyncThing()
// do something with the result
})
// this works:
React.useEffect(() => {
async function effect() {
const result = await doSomeAsyncThing()