refactor: SOL-122: replace classnames with clsx (#656)

refactor: SOL-122: replace classnames with clsx
This commit is contained in:
Dom Sip
2022-02-08 16:53:32 +00:00
committed by GitHub
parent 4508b13a3c
commit c11b1ca868
36 changed files with 39 additions and 40 deletions

View File

@@ -1,4 +1,4 @@
import cn from 'classnames'
import cn from 'clsx'
import Link from 'next/link'
import { FC, useRef, useState, useEffect } from 'react'
import { useTheme } from 'next-themes'

View File

@@ -1,6 +1,6 @@
import { FC } from 'react'
import Link from 'next/link'
import cn from 'classnames'
import cn from 'clsx'
import type { LineItem } from '@commerce/types/cart'
import useCart from '@framework/cart/use-cart'
import useCustomer from '@framework/customer/use-customer'