From e0c628528142f26ce9a42ba4c3c5d2cb41114a56 Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Thu, 10 May 2018 15:06:29 -0400 Subject: migrate styles --- frontend/components/LoadingItem.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 frontend/components/LoadingItem.js (limited to 'frontend/components/LoadingItem.js') diff --git a/frontend/components/LoadingItem.js b/frontend/components/LoadingItem.js new file mode 100644 index 0000000..5ba78d8 --- /dev/null +++ b/frontend/components/LoadingItem.js @@ -0,0 +1,28 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import Link from 'next/link'; +import Title from './styles/Title'; +import AddToCart from './AddToCart'; +import DeleteItem from './DeleteItem'; +import formatMoney from '../lib/formatMoney'; +import ItemStyles from './styles/ItemStyles'; +import PriceTag from './styles/PriceTag'; + +class LoadingItem extends React.Component { + render() { + return ( + + Loading...> + + <a>Loading...</a> + +

Please Wait

+
+ ); + } +} + +export default LoadingItem; -- cgit v1.3