Update .gitignore;

Update to style of CheckoutForm
This commit is contained in:
Chris-1010
2025-01-23 11:46:40 +00:00
parent e7822f3c98
commit be30d9c924
38 changed files with 1 additions and 5201 deletions

View File

@@ -1,21 +0,0 @@
import React from 'react'
interface ThumbnailProps {
path: string;
alt?: string;
}
const Thumbnail = ({ path, alt }: ThumbnailProps) => {
return (
<div>
<img
width={300}
src={path}
alt={alt}
className="stream-thumbnail rounded-md"
/>
</div>
)
}
export default Thumbnail