smart-components
v1.0.5
Published
zhike公共组件库
Downloads
18
Readme
smart-components
智课网公共组件
本地部署
npm install
npm start
npm run webpack
组件使用
import React from 'react'
import {
SmartFooter,
SmartCourseItem,
SmartNav,
SmartLooYu,
SmartTop,
SmartTopRight
} from 'smart-components'
class Home extends React.Component {
render() {
return (
<div>
<SmartTop />
<SmartNav />
<SmartTopRight />
<SmartLooYu />
<ul className='ul'>
<SmartCourseItem />
</ul>
<SmartFooter />
</div>)
}
}
export default Home;