All Downloads are FREE. Search and download functionalities are using the official Maven repository.

components.snippets.Pagination.Total.tsx Maven / Gradle / Ivy

The newest version!
import React from 'react'

import { Select } from './Select'
import { Total as TotalProps } from './constants'

export function Total({ total, title, className, onClick, visible }: TotalProps) {
    if (!visible) {
        return null
    }

    if (total) {
        return 
{total}
} return