feat: module sharing is working across components and run packages

This commit is contained in:
Anoop M D
2021-12-03 23:34:48 +05:30
parent e04bf87bf1
commit fd4ac03a97
24 changed files with 24078 additions and 380 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
const Navbar = () => {
return (
<div className="px-3 py-2 flex items-center bg-gray-200 justify-center">
Navbar
</div>
)
};
export default Navbar;

View File

@@ -0,0 +1,4 @@
import Navbar from './components/Navbar';
export default Navbar;