12 lines
198 B
TypeScript
12 lines
198 B
TypeScript
import React from 'react'
|
|
|
|
export default function Footer() {
|
|
return (
|
|
<footer>
|
|
<div className='content'>
|
|
Footer
|
|
</div>
|
|
</footer>
|
|
)
|
|
}
|