Files
2025-03-07 19:22:02 +01:00

15 lines
326 B
JavaScript

import * as React from 'react';
export const useSkeletonContextValues = (state)=>{
const { animation, appearance } = state;
const skeletonGroup = React.useMemo(()=>({
animation,
appearance
}), [
animation,
appearance
]);
return {
skeletonGroup
};
};