ElectronicBabylonianLiterature/ebl-frontend

View on GitHub
src/dictionary/ui/display/EmptySection.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import React from 'react'
import { Row } from 'react-bootstrap'

export function EmptySection({ as }: { as?: React.ElementType }): JSX.Element {
  return (
    <Row className="ml-5 empty-section" as={as}>
      No entries
    </Row>
  )
}