Fix message links from search.

This commit is contained in:
Paul
2021-07-31 22:39:15 +01:00
parent f20f1d8b41
commit 5c100b212e
5 changed files with 44 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
import { SyncOptions } from "../../../redux/reducers/sync";
import Checkbox from "../../../components/ui/Checkbox";
interface Props {
options?: SyncOptions;
}
export function Native(props: Props) {
return <div></div>;
}