daedalOS/components/Programs/Blog.tsx
Dustin Brett b70c58cccb Resized
2020-11-08 22:45:55 -08:00

17 lines
379 B
TypeScript

import styles from '@/styles/Programs/Blog.module.scss';
import type { AppComponent } from '@/types/utils/programs';
const BLOG_HOME_PAGE = 'https://www.dustinbrett.com/';
const Blog: React.FC<AppComponent> = () => (
<iframe className={styles.blog} title="Blog" src={BLOG_HOME_PAGE} />
);
export default Blog;
export const loaderOptions = {
width: 866,
height: 725
};