UNPKG

myprojectpackageprav

Version:
11 lines 711 B
import { instractions } from './instractions-data'; import "./instractions.css"; export default function Instractions() { return (React.createElement(React.Fragment, null, React.createElement("div", { className: "col-md-12 no-gutters instructionslist mb-3 py-2 ps-2 whitebg shadow font-12 sourcesanspro text-color5 bordered7 border-radius " }, React.createElement("ul", { tabIndex: 0, "aria-live": "polite" }, instractions.map(function (items) { return React.createElement("li", { className: "mb-2" }, React.createElement("span", { tabIndex: 0, "aria-label": items.title }, items.title)); }))))); } //# sourceMappingURL=instractions.js.map