mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-16 21:50:35 +02:00
10 lines
304 B
TypeScript
10 lines
304 B
TypeScript
import { ContextModalProps } from '@mantine/modals';
|
|
|
|
import { LyricsSettingsForm } from './lyrics-settings-form';
|
|
|
|
export const LyricsSettingsContextModal = ({
|
|
innerProps,
|
|
}: ContextModalProps<{ settingsKey: string }>) => {
|
|
return <LyricsSettingsForm settingsKey={innerProps.settingsKey} />;
|
|
};
|