Skip to content

Instantly share code, notes, and snippets.

@wahengchang
wahengchang / ShareCom.js
Last active April 20, 2022 08:45
Unit test, mocking components
import { InstallCom } from 'installComponent' //installed by npm
import UserCom from './userComponent'
export class ShareCom extends Component {
render() {
return (
<div>
<InstallCom para1='title1'/>
<UserCom para2='title2' />
</div>