8 lines
198 B
TypeScript
8 lines
198 B
TypeScript
import React from 'react';
|
|
import MoneyflowLandingPage from "@/components/ui/fin-tech-landing-page";
|
|
|
|
const Landing: React.FC = () => {
|
|
return <MoneyflowLandingPage />;
|
|
};
|
|
|
|
export default Landing; |