mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
Apply prettier over all files
This commit is contained in:
@@ -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
|
||||
|
@@ -1 +1 @@
|
||||
export { default } from "./CartSidebarView";
|
||||
export { default } from './CartSidebarView'
|
||||
|
@@ -1 +1 @@
|
||||
export { default as CartSidebarView } from "./CartSidebarView";
|
||||
export { default as CartSidebarView } from './CartSidebarView'
|
||||
|
Reference in New Issue
Block a user