add location

This commit is contained in:
Pritimay Sarkar
2023-07-31 18:04:44 +05:30
parent fb602e56d7
commit ba7c8e9d2f
6 changed files with 34 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import WorldMap from './WorldMap';
import './Locations.css';
function Locations({ show }) {
return (
<div className='locations-card'>
<WorldMap show={show} />
</div>
);
}
export default Locations;