feat: introduce app flows with dummy data

This commit is contained in:
Ali BARIN
2021-10-23 01:03:13 +02:00
parent c855a5f555
commit c94b8af821
6 changed files with 106 additions and 19 deletions

View File

@@ -0,0 +1,15 @@
import AppFlowRow from 'components/AppFlowRow';
type AppFlowsProps = {
appKey: String;
}
export default function AppFlows(props: AppFlowsProps) {
return (
<>
{Array.from(new Array(3)).map((item: any, index: number) => (
<AppFlowRow key={index} flow={item} />
))}
</>
)
};