Fix message links from search.

This commit is contained in:
Paul
2021-07-31 22:39:15 +01:00
parent 8872ed56b1
commit 63d2d1b760
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>;
}