Create Libraries and basic tooltip
This commit is contained in:
1
libs/panels/bottom-panel/src/index.ts
Normal file
1
libs/panels/bottom-panel/src/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export * from './lib/panels-bottom-panel';
|
||||
@@ -0,0 +1,7 @@
|
||||
import { panelsBottomPanel } from './panels-bottom-panel';
|
||||
|
||||
describe('panelsBottomPanel', () => {
|
||||
it('should work', () => {
|
||||
expect(panelsBottomPanel()).toEqual('panels-bottom-panel');
|
||||
});
|
||||
});
|
||||
3
libs/panels/bottom-panel/src/lib/panels-bottom-panel.ts
Normal file
3
libs/panels/bottom-panel/src/lib/panels-bottom-panel.ts
Normal file
@@ -0,0 +1,3 @@
|
||||
export function panelsBottomPanel(): string {
|
||||
return 'panels-bottom-panel';
|
||||
}
|
||||
Reference in New Issue
Block a user