fabasoad/business-card

View on GitHub
src/components/Controls/SectionTitle.tsx

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
import * as React from 'react'

interface SectionTitleProps {
  children: string
}

export default function SectionTitle({ children }: SectionTitleProps) {
  return (
    <div className="section-title text-center center">
      <h2>{children}</h2>
      <hr />
    </div>
  )
}