WhiteNightsAdminPanel/src/preview/components/MyComponent/index.tsx

8 lines
161 B
TypeScript

export const MyComponent = () => {
return (
<div style={{ width: "100px", height: "100px", backgroundColor: "red" }}>
MyComponent
</div>
);
};