You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
392 B
12 lines
392 B
import React from "react"; |
|
import bazarImage from '../../../../../assets/images/bazar.svg'; |
|
import appStoreImage from '../../../../../assets/images/app-store.svg'; |
|
|
|
function App() { |
|
return <div className="w-full flex flex-col items-center"> |
|
<img src={bazarImage} alt="" className="w-1/2 mb-5" /> |
|
<img src={appStoreImage} alt="" className="w-1/2" /> |
|
</div>; |
|
} |
|
|
|
export default App;
|
|
|