mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-26 18:19:22 -05:00
12 lines
231 B
TypeScript
12 lines
231 B
TypeScript
|
import { SyncOptions } from "../../../redux/reducers/sync";
|
||
|
|
||
|
import Checkbox from "../../../components/ui/Checkbox";
|
||
|
|
||
|
interface Props {
|
||
|
options?: SyncOptions;
|
||
|
}
|
||
|
|
||
|
export function Native(props: Props) {
|
||
|
return <div></div>;
|
||
|
}
|