✨ (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:
parent
12d1a9a426
commit
919db5d928
1 changed files with 9 additions and 0 deletions
9
src/frontend/src/boilerplate/raw-component/index.tsx
Normal file
9
src/frontend/src/boilerplate/raw-component/index.tsx
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
type RawComponentProps = {};
|
||||
const RawComponent = ({}: RawComponentProps) => {
|
||||
return (
|
||||
<>
|
||||
<div>RawComponent</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
export default RawComponent;
|
||||
Loading…
Add table
Add a link
Reference in a new issue