saveweb-search-frontend/src/App.tsx

13 lines
156 B
TypeScript
Raw Normal View History

2023-03-31 08:26:57 -07:00
import { Button } from 'antd';
const App = () => {
2023-03-31 08:26:57 -07:00
return (
<>
<div>App</div>
<Button>TEST</Button>
</>
);
};
export default App;