first commit
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export function getStyles(top, zIndex) {
|
||||
const topStyle = top ? `top:${top}px;` : '';
|
||||
const zIndexStyle = zIndex ? `z-index:${zIndex};` : '';
|
||||
return topStyle + zIndexStyle;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user