Skip to content

Commit

Permalink
feat(decission): add decission component
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerd Müller committed Jun 12, 2020
1 parent d460b7e commit d9154b2
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions libs/ui/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
export * from './lib/decission/decission';
export * from './lib/image/image';
export * from './lib/video/video';
export * from './lib/text/text';
Expand Down
Empty file.
11 changes: 11 additions & 0 deletions libs/ui/src/lib/decission/decission.spec.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';
import { render } from '@testing-library/react';

import Decission from './decission';

describe(' Decission', () => {
it('should render successfully', () => {
const { baseElement } = render(<Decission />);
expect(baseElement).toBeTruthy();
});
});
16 changes: 16 additions & 0 deletions libs/ui/src/lib/decission/decission.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react';

import './decission.scss';

/* eslint-disable-next-line */
export interface DecissionProps {}

export const Decission = (props: DecissionProps) => {
return (
<div>
<h1>Welcome to decission component!</h1>
</div>
);
};

export default Decission;

0 comments on commit d9154b2

Please sign in to comment.