From 5689c68fa6a28cbffcd91455ecd0a3945d5f369a Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Sat, 27 Mar 2021 12:39:14 +0900 Subject: [PATCH] feat: added calculator seo --- pages/calculator.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pages/calculator.tsx b/pages/calculator.tsx index ecd701d..85cfdd2 100644 --- a/pages/calculator.tsx +++ b/pages/calculator.tsx @@ -7,6 +7,7 @@ import { ParsedUrlQuery } from 'node:querystring' const Container = dynamic(() => import('@components/Container')) const Input = dynamic(() => import('@components/Form/Input')) +const SEO = dynamic(() => import('@components/SEO')) const Calculator:NextPage = ({ query }) => { const [ value, setValue ] = useState<{[perm: string]: boolean}>({}) @@ -22,6 +23,7 @@ const Calculator:NextPage = ({ query }) => { } return +

봇 초대링크 생성기

권한: {Object.keys(value).filter(el => value[el]).map(el => Number(el)).reduce((prev, curr) => prev | curr, 0)} = { Object.keys(value).filter(el => value[el]).map(el => `0x${Number(el).toString(16)}`).join(' | ') }