main
tsx 14 lines 246 Bytes
Raw
1 import './footer.css'
2 import type { JSX } from 'react'
3
4 export interface FooterProps {
5 children: any
6 }
7
8 export function Footer ({ children }: FooterProps): JSX.Element {
9 return (
10 <div className='Footer'>
11 {children}
12 </div>
13 )
14 }