PromucFlow_constructor/app/client/src/App.tsx

10 lines
222 B
TypeScript
Raw Normal View History

import React from "react";
import { Redirect } from "react-router-dom";
import { APPLICATIONS_URL } from "constants/routes";
2019-12-03 09:21:06 +00:00
export const App = () => {
2020-05-05 12:16:51 +00:00
return <Redirect to={APPLICATIONS_URL} />;
};
2019-01-21 15:11:10 +00:00
export default App;