mirror of
https://github.com/Team4388/Robot-Essentials.git
synced 2026-06-09 08:48:02 -06:00
13 lines
309 B
React
13 lines
309 B
React
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__;
|