add md5 and output

This commit is contained in:
medcl 2020-03-02 23:40:44 +08:00
parent 30d46cd2b2
commit 1daaf273fa
2 changed files with 7 additions and 2 deletions

View File

@ -20,6 +20,7 @@
"@umijs/preset-react": "^1.2.2"
},
"dependencies": {
"antd": "^4.0.0"
"antd": "^4.0.0",
"md5": "^2.2.1"
}
}

View File

@ -1,3 +1,7 @@
export default () => {
var md5 = require('md5');
console.log(md5('message'));
return <div>hello 极限科技</div>;
}
}