mirror of
https://github.com/linkwarden/linkwarden.git
synced 2026-03-03 03:47:02 +00:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
import React, { forwardRef } from "react";
|
|
import { RefreshControl, RefreshControlProps } from "react-native";
|
|
|
|
const Spinner = forwardRef<RefreshControl, RefreshControlProps>(
|
|
(props, ref) => {
|
|
return <RefreshControl ref={ref} {...props} />;
|
|
}
|
|
);
|
|
|
|
export default Spinner;
|