rofrischmann/alveron

View on GitHub
website/components/Template.js

Summary

Maintainability
A
0 mins
Test Coverage
import * as React from 'react'

import Footer from './Footer'

export default function Template({ children }) {
  return (
    <>
      {children}
      <Footer />
    </>
  )
}