A React Native MMKV DevTool that can run in an Expo App
npx expo install @dev-plugins/react-native-mmkv
import { useMMKVDevTools } from '@dev-plugins/react-native-mmkv';
import { MMKV } from 'react-native-mmkv';
const yourMmkvStorage = new MMKV({ id: 'any_id' });
export default function App() {
useMMKVDevTools({ storage: yourMmkvStorage });
/* ... */
}