Updated plop templates and added mobile first components

This commit is contained in:
2020-03-27 00:21:23 +05:30
parent 55737ad34d
commit 5ee96d6360
144 changed files with 2589 additions and 280 deletions

View File

@@ -0,0 +1,3 @@
.c-CartIcon {
}

View File

@@ -0,0 +1,19 @@
import React from 'react';
import PropTypes from 'prop-types';
const CartIcon = props => {
return (
<div className='c-CartIcon'>
</div>
);
};
CartIcon.defaultProps = {
};
CartIcon.propTypes = {
};
export default CartIcon;

View File

@@ -0,0 +1,8 @@
import React from 'react';
import CartIcon from './CartIcon';
describe('CartIcon', () => {
it('renders without error', () => {
});
});

View File

@@ -0,0 +1,3 @@
import CartIcon from './CartIcon.jsx';
export default CartIcon;