mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
11 lines
212 B
TypeScript
11 lines
212 B
TypeScript
import React, { FC } from 'react'
|
|
import s from './Quantifier.module.css'
|
|
|
|
export interface QuantifierProps {}
|
|
|
|
const Quantifier: FC<QuantifierProps> = ({}) => {
|
|
return <div></div>
|
|
}
|
|
|
|
export default Quantifier
|