File size: 360 Bytes
b59aa07
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { InputSkeleton } from "../input-skeleton";
import { SwitchSkeleton } from "../switch-skeleton";

export function AppSettingsInputsSkeleton() {
  return (
    <div
      data-testid="app-settings-skeleton"
      className="px-11 py-9 flex flex-col gap-6"
    >
      <InputSkeleton />
      <SwitchSkeleton />
      <SwitchSkeleton />
    </div>
  );
}