feat: validate before move to full and partial transactions locking.

This commit is contained in:
a.bouhuolia
2021-12-13 16:28:36 +02:00
parent 51dfee699f
commit 21e075b479
6 changed files with 75 additions and 6 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
export function Join({ items, sep }) {
return items.length > 0
? items.reduce((result, item) => (
<>
{result}
{sep}
{item}
</>
))
: null;
}