mirror of
https://github.com/ente-io/ente.git
synced 2025-08-14 02:07:33 +00:00
6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
import React from "react";
|
|
|
|
export const Card: React.FC = () => {
|
|
return <div>Hello</div>;
|
|
};
|