-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
600b231
commit d048c4b
Showing
3 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import './complete.css'; | ||
import { Link } from 'react-router-dom'; | ||
|
||
function NotEnoughInventory() { | ||
return ( | ||
<div className="not-enough-inventory"> | ||
<h2>Not Enough Inventory</h2> | ||
<p> | ||
The product you are interested is out of stock.Please accept our deepest | ||
apologies. If you want to know when it will be available, please <Link to="/">contact us</Link>. | ||
</p> | ||
</div> | ||
); | ||
} | ||
|
||
export default NotEnoughInventory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters