diff options
Diffstat (limited to 'src/components/shared/Basic.tsx')
| -rw-r--r-- | src/components/shared/Basic.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/components/shared/Basic.tsx b/src/components/shared/Basic.tsx new file mode 100644 index 0000000..dbd1bc7 --- /dev/null +++ b/src/components/shared/Basic.tsx @@ -0,0 +1,16 @@ +import React from 'react'; + +import s from './Basic.module.css'; + +export function SectionNameType({ name, type }) { + return ( + <h2 className={s.sectionNameType}> + <span>{name}</span> + <span>{type}</span> + </h2> + ); +} + +export function LoadingDot() { + return <span className={s.loadingDot} />; +} |
