File size: 743 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import React from 'react'
import { Link } from 'react-router-dom/cjs/react-router-dom'
import { ButtonContainer } from '../Button'

export default function EmptyCart() {
    return (
        <div className="container mt-5">
            <div className="row">
                <div className="col-10 mx-auto text-center text-title text-primary">
                    <h1>Your cart is currently empty</h1>
                </div>
                <div className="col-10 mx-auto  text-center">
                    <Link to="/">
                        <ButtonContainer>
                            back to shopping
                        </ButtonContainer>
                    </Link>
                </div>
            </div>
        </div>
    )
}