revite/src/pages/settings/panes/Native.tsx

12 lines
231 B
TypeScript
Raw Normal View History

2021-07-31 22:39:15 +01:00
import { SyncOptions } from "../../../redux/reducers/sync";
import Checkbox from "../../../components/ui/Checkbox";
interface Props {
options?: SyncOptions;
}
export function Native(props: Props) {
return <div></div>;
}