aboutsummaryrefslogtreecommitdiff
path: root/components/image.tsx
blob: 5a8b2cf134c04ba828dfc450f1d8e71abed7d57d (plain)
1
2
3
4
5
6
7
8
9
10
11
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>;
}