typeblast
Groups
Download
Back to Groups
Development
Developer Shortcuts
Code boilerplate.
TY
Typeblast
0
likes
0
subscribers
10
snippets
Subscribe
Like
Fork
Snippets (10)
;useState
useState
const [v,setV] = useState();
;drun
Docker
docker run -d --name x -p :
;comp
Component
export function C() { return <div/>; }
;afunc
Async
const fn = async () => { try {} catch(e) {} };
;func
Function
const fn = () => {};
;log
Log
console.log();
;useEffect
useEffect
useEffect(() => { return () => {}; }, []);
;fetch
Fetch
const r = await fetch(url);
;shebang
Shebang
#!/usr/bin/env bash
;gitco
Git
git add -A && git commit -m ""
Developer Shortcuts — Snippet Group | typeblast