JSFiddle - React, Tailwind, and code Playground

by Vladymyr Shevchuk

JavaScript

const levelsConfig = {
 'admin': 1,
 'partner': 2,
 'memember': 3
};

// Store
const store = {
	roles: {
  	'env1': 'admin',
    'env2': 'partenr'
  }
};

class checkRole extends React.Component {

}

connect(null, null)(checkRole);