zcash-grant-system/frontend/client/pages/about.tsx

12 lines
294 B
TypeScript
Raw Normal View History

2019-01-16 15:19:34 -08:00
import React from 'react';
import MarkdownPage from 'components/MarkdownPage';
const About = () => {
if (typeof window !== 'undefined') {
window.location.href = 'https://www.zfnd.org/about/';
}
return <MarkdownPage markdown="Redirecting to zfnd.org..." />;
};
2019-01-16 15:19:34 -08:00
export default About;