import React from 'react'; import Typography from 'antd/lib/typography'; import { StorageType } from '../server/storage.typing'; import { ForEachPage } from './ForEachPage'; import { BeforeAfter } from './BeforeAfter'; import { BeforeAfterType } from '../server/typing'; const { Title } = Typography; interface Props { storageType: StorageType; projectId: string; } export const Codes = ({ projectId, storageType }: Props) => { return ( <>