mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-26 08:08:05 +03:00
10 lines
267 B
TypeScript
10 lines
267 B
TypeScript
import {createRealmContext} from "@realm/react";
|
|
import {AMCard} from "./AMCard";
|
|
import {AMServer} from "./AMServer";
|
|
|
|
// @ts-ignore
|
|
export default createRealmContext({
|
|
schemaVersion: 1,
|
|
schema: [AMCard, AMServer],
|
|
deleteRealmIfMigrationNeeded: false
|
|
}); |