Files
fe_service_ebtp_frontend/src/pages/Auction/AuctionMyLookingForInnerShot/index.tsx
2022-03-10 14:24:13 +08:00

12 lines
239 B
TypeScript

import React from 'react';
import AuctionMyLookingForInnerShot from './components/AuctionMyLookingForInnerShot';
const Index: React.FC = () => {
return (
<>
<AuctionMyLookingForInnerShot />
</>
)
}
export default Index;