"use client"; import { useRLNImplementation } from '../contexts'; import React from 'react'; import { ToggleGroup, ToggleGroupItem } from "./ui/toggle-group"; export function RLNImplementationToggle() { const { implementation, setImplementation } = useRLNImplementation(); return (
{implementation === 'light' ? 'Light implementation, without Zerokit. Instant initialisation.' : 'Standard implementation, with Zerokit. Initialisation takes 10-15 seconds for WASM module.' }