[#812,package][xl]: initial versioning of the package

This commit is contained in:
deme
2023-05-01 15:53:42 -03:00
parent cc43597130
commit 169a92d313
49 changed files with 11254 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
/*
* Replace this with your own classes
*
* e.g.
* .container {
* }
*/

View File

@@ -0,0 +1,10 @@
import { render } from '@testing-library/react';
import PortaljsComponents from './portaljs-components';
describe('PortaljsComponents', () => {
it('should render successfully', () => {
const { baseElement } = render(<PortaljsComponents />);
expect(baseElement).toBeTruthy();
});
});

View File

@@ -0,0 +1,14 @@
import styles from './portaljs-components.module.css';
/* eslint-disable-next-line */
export interface PortaljsComponentsProps {}
export function PortaljsComponents(props: PortaljsComponentsProps) {
return (
<div className={styles['container']}>
<h1>Welcome to PortaljsComponents!</h1>
</div>
);
}
export default PortaljsComponents;