I wish I could bring all the images to the 'Image.jsx' file and easily take them out of another file in React
For example
export const Header = ({ title, children }) => {
return (
<>
<Title>{title}</Title>
<Items>{children}</Items>
</>
);
};
Header.propTypes = {
title: PropTypes.node,
children: PropTypes.object,
};
// I made a separate component. And the codes in the component will be used in other files.
import { Header } from "../BaseLabel";
const FriendstHeader = () => {
return (
<>
<FriendContainer>
<Header title="친구" style={{ color: "#191919" }}/>
</FriendContainer>
</>
);
};
export default FriendstHeader;
I want to manage the image. like the example. This is Image.jsx
import React from 'react';
import PropTypes from 'prop-types';
import Search from "images/search.png";
const imageSrc = [ Search ];
export const Image = (props: imageSrc) => {
return (
<>
<img alt="">{imageSrc.Search}</img>
</>
);
};
Image.propTypes = {
imageSrc: PropTypes.node,
};
This is the main screen that will bring up the image.
import React from 'react';
import Search from "images/search.png";
const Header = () => {
return(
<>
<Items>
<img src={Search} width="18px" height="18px" alt="" />
</Items>
</>
)
}
export default Header;
In fact, the image is not one, but it has been reduced to one above not to look complicated.
Actually bundling images in code is bad idea. You should move your images or static files to
public
orpublic/images
(it would make more sense).Then your
Image.jsx
can be like this.After that you can use your
Image
component like this: