feat(pages): Add initial structure for pages with page1 component
This commit is contained in:
@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@consent.software/catalog',
|
||||
version: '1.1.0',
|
||||
version: '1.2.0',
|
||||
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
||||
}
|
||||
|
1
ts_web/pages/index.ts
Normal file
1
ts_web/pages/index.ts
Normal file
@ -0,0 +1 @@
|
||||
export * from './page1.js';
|
3
ts_web/pages/page1.ts
Normal file
3
ts_web/pages/page1.ts
Normal file
@ -0,0 +1,3 @@
|
||||
import { html } from 'lit';
|
||||
|
||||
export const page1 = () => html``;
|
Reference in New Issue
Block a user