aboutsummaryrefslogtreecommitdiff
path: root/components/image.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'components/image.tsx')
-rw-r--r--components/image.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/components/image.tsx b/components/image.tsx
deleted file mode 100644
index 5a8b2cf..0000000
--- a/components/image.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-export default function Image(props: {
- src: string;
- alt?: string;
-}) {
- return <div className='image'>
- <img src={props.src} alt={props.alt} />
- {props.alt && <div>
- <p>{props.alt}</p>
- </div>}
- </div>;
-}