First commit to the new repository

:
This commit is contained in:
Daniel Ledda
2020-05-10 15:10:12 +02:00
commit d99d7cbfec
49 changed files with 10784 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import React from "react";
interface GenericKadiRowContainerProps {
cellCssClassName: string;
label: string;
}
const GenericKadiRowContainer: React.FunctionComponent<GenericKadiRowContainerProps> = ({ cellCssClassName, label, children }) => {
return (
<tr className={"kadiRow " + cellCssClassName}>
<td className="kadiCell rowLabelCell">{label}</td>
{children}
</tr>
);
};
export default GenericKadiRowContainer;