This application is not supported on this platform
Last updated
Last updated
useEffect(() => {
if (
typeof window.sqlite === 'undefined' ||
typeof window.pyshell === 'undefined'
) {
setIsSupported(false);
return;
}
...
}, []);