First commit to the new repository
:
This commit is contained in:
17
src/Components/GenericKadiRowContainer.tsx
Executable file
17
src/Components/GenericKadiRowContainer.tsx
Executable 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;
|
||||
Reference in New Issue
Block a user