12 lines
201 B
TypeScript
12 lines
201 B
TypeScript
import './ExploreContainer.css';
|
|
|
|
const ExploreContainer = ({ name }) => {
|
|
return (
|
|
<div className="container">
|
|
<strong>{name}</strong>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default ExploreContainer;
|