import React from 'react' import { PinataJwtInput } from '../shared/components/PinataJwtInput.js' import type { Step } from '../reducer.js' interface RebackupStorageScreenProps { step: Extract footer: React.ReactNode title?: string subtitle?: string onSubmit: (input: string) => void onCancel: () => void } export const RebackupStorageScreen: React.FC = ({ step, footer, title, subtitle, onSubmit, onCancel }) => { const publicOnly = step.kind === 'public-profile-storage' return ( ) }