feat: introduce app flows with dummy data
This commit is contained in:
15
packages/web/src/components/AppFlows/index.tsx
Normal file
15
packages/web/src/components/AppFlows/index.tsx
Normal 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} />
|
||||
))}
|
||||
</>
|
||||
)
|
||||
};
|
Reference in New Issue
Block a user