Files
if.u.clients.web/src/components/HintText.tsx
mamamiyear ddb04ff15e feat: basic layout and pages
- add basic layout with sidebar and main container
- add three menus in sidebar
- add people form page for post people
- add text and image input for recognize people info
- add people table page for show peoples
2025-10-27 00:37:39 +08:00

12 lines
273 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react';
import './HintText.css';
const HintText: React.FC = () => {
return (
<div className="hint-text">
Enter Shift+Enter
</div>
);
};
export default HintText;