@lotte-innovate/ui-component-test 0.0.152 → 0.0.153

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@ export function useWindowSize() {
6
6
  function handleResize() {
7
7
  if (typeof window == undefined)
8
8
  return;
9
+ console.log(window);
9
10
  var width = 130 + window.innerWidth * 0.15;
10
11
  width = Math.max(width, MIN_SIZE);
11
12
  width = Math.min(width, 300);