12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import React from 'react'
|
|
|
|
const FitCenter: React.FC<PropsWithChildren> = (props: PropsWithChildren) => {
|
|
return (
|
|
<>
|
|
<div className={'fit-center'}>{props.children}</div>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default FitCenter
|