import React from 'react'
import Build from './build'
import Conserve from './conserve'
import Guanli from './guanli'
import Leadership from './leadership'
import Operation from './operation'
const Footer = ({ tabKey }) => {
return (
<>
{
(() => {
switch (tabKey) {
case 'build':
return
case 'conserve':
return
case "leadership":
return
case "guanli":
return
case "operation":
return
}
})()
}
>
)
}
export default Footer