(raw-component): create a new raw component called RawComponent

📝 (raw-component): add a basic implementation of the RawComponent with a simple div element inside
This commit is contained in:
cristhianzl 2024-05-10 11:23:37 -03:00
commit 919db5d928

View file

@ -0,0 +1,9 @@
type RawComponentProps = {};
const RawComponent = ({}: RawComponentProps) => {
return (
<>
<div>RawComponent</div>
</>
);
};
export default RawComponent;