We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3eb352 commit 6d064deCopy full SHA for 6d064de
mlflow-site/Home.jsx
mlflow-site/NavBar.jsx
mlflow-site/src/app/components/TeamCard.tsx
@@ -7,6 +7,8 @@ interface TeamCardProps {
7
email: string;
8
linkedIn: string;
9
}
10
+// declare function require(path: string);
11
+// const kittenHeader = require('../images/kitten-header.jpg');
12
13
const TeamCard: React.FC<TeamCardProps> = ({
14
name,
@@ -18,6 +20,7 @@ const TeamCard: React.FC<TeamCardProps> = ({
18
20
<div className='teamcard'>
19
21
{/* <div style={{ backgroundImage: 'url(../../assets/imageNotFound.jpg)' }} className='teamCardImg'></div> */}
22
<img src={imageNotFound} alt='Miss'></img>
23
+ {/* <img src={require('../../assets/imageNotFound.jpg')} alt="Test"></img> */}
24
<div>{name}</div>
25
<div>
26
<a href={github}>G </a>
0 commit comments