13 lines
No EOL
347 B
JavaScript
Executable file
13 lines
No EOL
347 B
JavaScript
Executable file
import Image from 'next/image';
|
|
|
|
const ShowSideBar = (props) => (
|
|
<div className="side_content col-md-3">
|
|
<Image
|
|
src={props.props.serverRuntimeConfig.base_path + props.props.showdata.logo.src}
|
|
height={props.props.showdata.logo.height}
|
|
width={props.props.showdata.logo.width}
|
|
/>
|
|
</div>
|
|
);
|
|
|
|
export default ShowSideBar |