6 lines
127 B
TypeScript
6 lines
127 B
TypeScript
export function useProps<S, P>(props: Record<string, any>) {
|
|
const stateProps = {};
|
|
const primitiveProps = {};
|
|
return;
|
|
}
|