Files
Robot-Essentials/.templates/template-sample-react-component/index.jsx
T

13 lines
309 B
React
Raw Normal View History

2020-04-11 11:50:13 -06:00
import React from "react";
import classNames from "classnames/bind";
import styles from "./index.scss";
const cx = classNames.bind(styles);
function __templateNameToPascalCase__() {
return <div className={cx("__templateNameToParamCase__")}>Hello :)</div>;
}
export default __templateNameToPascalCase__;