import React, { JSX } from 'react' import { CopyableIcon } from './CopyableIcon' import config from '../config' export function RetrieveCodeBox({ retrieveCode, }: { retrieveCode: string }): JSX.Element { return (

File Retrieve Code

{Array(config.retrieveCodeSlug.numChars) .fill('') .map((_, index) => (
{retrieveCode[index]}
))}

Use the above code to retrieve the file.

) }