気づいたら9月、今年が終わるまで3ヶ月とちょっと。今年はあんまり思い出がないような気もする。2019が結婚転職引越しと色々ありすぎたせいかもしれない。
2月に新婚旅行で九州に行ったのと、8月の終わりに会社の人たちと山梨県でコテージ泊したくらいか。あとはわりとライブを観に行った。
export const OGP = ({ url }) => { const [og, setOg] = useState(null) useEffect(() => { if (!og) { Axios.get(url, { responseType: 'document' }).then((res) => { let [image, title] = ['', ''] res.data.head.childNodes.forEach((child) => { if (child.nodeName === 'META') { if (child.getAttribute('property') === 'og:image') { image = child.getAttribute('content') } if (child.getAttribute('property') === 'og:title') { title = child.getAttribute('content') } } }) setOg({ image, title }) }) } }, [og]) return ( <Lazy>{og ? <> <p>{og.title}</p> <img src={og.image} width={'50%'} /> </> : 'loading'}</Lazy> ); }
const topFunction = () => ({ first: () => { console.log('hoge') }})topFunction() === topFunction() // false