import module in another module angular code example
Example: export component in
//Export single component in react.js
import React from "react";
function MyInfo() {
return (
<div>
<h1>Swapnil</h1>
<p>Hy this is Swapnil, I have no idea who I am</p>
<ul>
<li>Ladakh</li>
<li>Himachal Pradesh</li>
<li>Vellangiri Mountains</li>
</ul>
</div>
)
}
export default MyInfo