12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
![]() |
import React from 'react';
|
||
|
import AuctionMyLookingForInnerShot from './components/AuctionMyLookingForInnerShot';
|
||
|
|
||
|
const Index: React.FC = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<AuctionMyLookingForInnerShot />
|
||
|
</>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default Index;
|