mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
import React from 'react';
|
|
import Header from './Header';
|
|
import Footer from './Footer';
|
|
|
|
import './app.less';
|
|
export default function App({ children }) {
|
|
return (<div>
|
|
<Header />
|
|
{ children }
|
|
<Footer />
|
|
</div>);
|
|
}
|