function renderDistributionKey()

in src/main/js/components/simple-grid/simple-grid-row.js [59:76]


    function renderDistributionKey() {
        return (
            <td className="px-6 py-2">
                <div className="flex justify-center -m-2">
                    <div
                        className="px-2 h-6 text-green-300 text-xs font-extrabold rounded-md flex items-center justify-center border-dashed border border-green-300 m-2"
                        style={{minWidth: "80px"}}>
                        Group: {group.key}
                    </div>
                    <div
                        className="px-2 h-6 text-green-300 text-xs font-extrabold rounded-md flex items-center justify-center border-dashed border border-green-300 m-2"
                        style={{minWidth: "110px"}}>
                        Distribution: {group.distribution}
                    </div>
                </div>
            </td>
        )
    }