homebrew-install/.dumi/theme/ValineComment.tsx
2021-03-19 17:00:02 +08:00

19 lines
427 B
TypeScript

import { useEffect } from 'react';
export default function ValineComment({ location }) {
const { pathname } = location;
useEffect(() => {
import('valine').then(Valine => {
new Valine.default({
el: '#vcomments',
appId: 'Ke6Uq74Gi6sdTxcDu4nJ6sdw-MdYXbMMI',
appKey: 'VtFD26towQ1JQxB9tLHd8odg',
path: pathname,
});
});
}, [pathname]);
return <div id="vcomments" />;
}