mirror of
https://github.com/ente-io/ente.git
synced 2025-06-14 04:28:53 +00:00
6 lines
103 B
TypeScript
6 lines
103 B
TypeScript
import * as React from "react";
|
|
|
|
export const Card: React.FC = () => {
|
|
return <div>Hello</div>;
|
|
};
|