mirror of
https://github.com/cupcakearmy/old.nicco.io.git
synced 2024-11-01 08:34:13 +01:00
15 lines
234 B
TypeScript
15 lines
234 B
TypeScript
import React from 'react'
|
|
|
|
import '../styles/Static.styl'
|
|
|
|
|
|
|
|
const StaticText: React.FC = ({ children }) => {
|
|
return <div className={'static'}>
|
|
<div className={'content'}>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
export default StaticText |