Skip to content

Instantly share code, notes, and snippets.

View mehuljariwala's full-sized avatar
:electron:
Focusing

Mehul Jariwala mehuljariwala

:electron:
Focusing
  • Full Stack Developer
  • Bangalore Karnataka India
View GitHub Profile
@mehuljariwala
mehuljariwala / DeveloperHelper.js
Last active December 27, 2021 16:31
Common Utils for developer
//check if the string is empty of not
const isEmpty = (string) => {
if (string.trim() === "") return true;
else return false;
};
//CSS Media queries
// @media only screen and (max-width: 320px) {}
// @media only screen and (min-width: 480px) {}
// @media only screen and (min-width: 768px) {}
@mehuljariwala
mehuljariwala / pointingClassStyle.jsx
Last active March 6, 2020 04:36
JSX Pointing another classname Example.
AddList:{
display: 'flex',
}
floatingButtonWrap:{
display: 'flex',
}
card: {
display: 'flex',
justifyContent: 'space-between',
'& $AddList': {