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