Apply prettier over all files

This commit is contained in:
Luis Alvarez
2020-10-01 20:40:40 -05:00
parent 2314ad760a
commit 0ef6449aff
72 changed files with 648 additions and 652 deletions

View File

@@ -1,11 +1,11 @@
import React, { FunctionComponent } from "react";
import { UserNav } from "@components/core";
import { Button } from "@components/ui";
import { Trash, Cross } from "@components/icon";
import { useUI } from "@components/ui/context";
import React, { FunctionComponent } from 'react'
import { UserNav } from '@components/core'
import { Button } from '@components/ui'
import { Trash, Cross } from '@components/icon'
import { useUI } from '@components/ui/context'
const CartSidebarView: FunctionComponent = () => {
const { closeSidebar } = useUI();
const { closeSidebar } = useUI()
return (
<>
<header className="px-4 py-6 sm:px-6 border-b border-gray-200">
@@ -57,7 +57,7 @@ const CartSidebarView: FunctionComponent = () => {
<Button>Proceed to Checkout</Button>
</div>
</>
);
};
)
}
export default CartSidebarView;
export default CartSidebarView

View File

@@ -1 +1 @@
export { default } from "./CartSidebarView";
export { default } from './CartSidebarView'

View File

@@ -1 +1 @@
export { default as CartSidebarView } from "./CartSidebarView";
export { default as CartSidebarView } from './CartSidebarView'