mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-25 21:55:49 +00:00
feat: module sharing is working across components and run packages
This commit is contained in:
11
packages/grafnode-components/src/components/Navbar/index.js
Normal file
11
packages/grafnode-components/src/components/Navbar/index.js
Normal 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;
|
||||
4
packages/grafnode-components/src/index.js
Normal file
4
packages/grafnode-components/src/index.js
Normal file
@@ -0,0 +1,4 @@
|
||||
import Navbar from './components/Navbar';
|
||||
|
||||
export default Navbar;
|
||||
|
||||
Reference in New Issue
Block a user