feat: optimize transactions locking.

This commit is contained in:
a.bouhuolia
2021-12-13 19:22:56 +02:00
parent 0ee9b54a9b
commit a52f00eeb2
9 changed files with 103 additions and 48 deletions

View File

@@ -1,26 +0,0 @@
.root {
&_danger {
}
&__primary{
.title{
color: #1a3bd4;
}
}
}
.title {
}
.description {
}

View File

@@ -0,0 +1,6 @@
import React from 'react';
import clsx from 'classnames';
export function Paragraph({ className, children }) {
return <p className={clsx('paragraph', className)}>{children}</p>;
}

View File

@@ -0,0 +1,2 @@
export * from './Paragraph';

View File

@@ -88,6 +88,7 @@ export * from './IntersectionObserver';
export * from './SMSPreview';
export * from './Contacts';
export * from './Utils/Join';
export * from './Typo';
const Hint = FieldHint;