Skip to content

Instantly share code, notes, and snippets.

import React, { useState } from 'react';
import ProductList from './eshop/components/ProductList';
import Cart from './eshop/components/Cart';
function App() {
const [view, setView] = useState('shop');
const [products] = useState([
{ id: 1, name: "iPhone 15", price: 22000 },
{ id: 2, name: "MacBook Air", price: 29900 },
{ id: 3, name: "AirPods Pro", price: 6000 },