mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
re-structure to monorepo.
This commit is contained in:
7
packages/webapp/src/components/Typo/Paragraph.tsx
Normal file
7
packages/webapp/src/components/Typo/Paragraph.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
import clsx from 'classnames';
|
||||
|
||||
export function Paragraph({ className, children }) {
|
||||
return <p className={clsx('paragraph', className)}>{children}</p>;
|
||||
}
|
||||
3
packages/webapp/src/components/Typo/index.tsx
Normal file
3
packages/webapp/src/components/Typo/index.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
// @ts-nocheck
|
||||
|
||||
export * from './Paragraph';
|
||||
Reference in New Issue
Block a user