oem-automation-frontend/src/components/mainPage/showCase.jsx

40 lines
1.0 KiB
React
Raw Normal View History

2021-11-09 08:11:57 -05:00
import React from "react";
import "./showCase.css";
import { plc, w2c } from "../../assets";
const ShowCase = () => {
return (
<div className="container border">
<div className="row">
<div className="col-2">
<figure className="figure border">
<img
className="photo figure-img img-fluid rounded"
src={plc}
alt="product plc"
/>
<figcaption className="figure-caption">
B1-14MR2................................
</figcaption>
</figure>
</div>
<div className="col-2" >
<figure className="figure border">
<img
className="photo figure-img img-fluid rounded"
src={w2c}
alt="product w2c"
/>
<figcaption className="figure-caption">
W2C ...................
</figcaption>
</figure>
</div>
</div>
</div>
);
};
export default ShowCase;