2
0

🚀 Init bot-engine

This commit is contained in:
Baptiste Arnaud
2021-12-08 09:33:25 +01:00
parent 641ba3db8a
commit 9dbad1dbab
16 changed files with 1943 additions and 9 deletions

View File

@ -0,0 +1,7 @@
import React from 'react'
import { PublicTypebot } from 'db'
import '../style.css'
export const TypebotViewer = (props: PublicTypebot) => {
return <div>{props.name}</div>
}