14 lines
233 B
TypeScript
14 lines
233 B
TypeScript
import './Footer.sass'
|
|
import type { JSXElement } from 'solid-js'
|
|
|
|
interface Props {
|
|
children: JSXElement
|
|
}
|
|
|
|
export default (props: Props) => {
|
|
return (
|
|
<>
|
|
<footer class="footer">{props.children}</footer>
|
|
</>
|
|
)
|
|
}
|