Snipshots

Create Code Snippet

Customize your code snippet with various options and export it as an image.

File name to highlight

One liner description of the code snippet

Language to highlight

Theme to highlight

Code to highlight

Loading...

index.tsx

Description

const GroceryItem: React.FC<GroceryItemProps> = ({ item }) => {
  return (
    <div>
      <h2>{item.name}</h2>
      <p>Price: {item.price}</p>
      <p>Quantity: {item.quantity}</p>
    </div>
  );
}

snipshots.app