UNPKG

portfolio-xs

Version:

This is a tool to generate portfolio based with your markdown file

11 lines (8 loc) 272 B
import React from "react"; import ReactDOM from "react-dom/client"; import Template from "./template.jsx"; import './index.css'; // Ensure you have a CSS file for styles const root = ReactDOM.createRoot(document.getElementById("root")); root.render( <Template /> );