Skip to content

Commit

Permalink
[chore] removed TODOs in app/page
Browse files Browse the repository at this point in the history
  • Loading branch information
deenasun committed Oct 5, 2024
1 parent d39c2ab commit 6d14884
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,10 @@
'use client';

import { CSSProperties, useEffect } from 'react';
import { CSSProperties } from 'react';
import Image from 'next/image';
import BPLogo from '@/assets/images/bp-logo.png';
import queryProjects from '../src/queries/query';

// TODO: build some sort of testing page
export default function Home() {
useEffect(() => {
queryProjects();
}, []);

return (
<main style={mainStyles}>
<Image style={imageStyles} src={BPLogo} alt="Blueprint Logo" />
Expand Down

0 comments on commit 6d14884

Please sign in to comment.