meshtastic/src/components/BaseCSS.tsx

9 lines
201 B
TypeScript
Raw Normal View History

2023-09-18 22:05:17 -07:00
// class .markdown needs to be called or it is removed from the build
import React from "react";
const BaseCSS = () => {
return <div className="markdown">Shid Fard</div>;
};
2023-09-18 22:07:52 -07:00
export default BaseCSS;