Files
fe_service_ebtp_frontend/src/pages/Auction/AuctionMyLookingForInnerShot/index.tsx

12 lines
239 B
TypeScript
Raw Normal View History

2022-03-10 14:24:13 +08:00
import React from 'react';
import AuctionMyLookingForInnerShot from './components/AuctionMyLookingForInnerShot';
const Index: React.FC = () => {
return (
<>
<AuctionMyLookingForInnerShot />
</>
)
}
export default Index;