market/src/components/Publish/Pricing/Fixed.tsx

15 lines
375 B
TypeScript

import React, { ReactElement } from 'react'
import FormHelp from '@shared/FormInput/Help'
import Price from './Price'
import Fees from './Fees'
export default function Fixed({ content }: { content: any }): ReactElement {
return (
<>
<FormHelp>{content.info}</FormHelp>
<Price />
<Fees tooltips={content.tooltips} pricingType="fixed" />
</>
)
}