{"ast":null,"code":"var _jsxFileName = \"D:\\\\Project\\\\UC_Trains_Voice\\\\react-demo\\\\src\\\\gavt\\\\Word.tsx\";\nimport React from 'react';\nimport { Card, Button, Flex } from 'antd';\nimport { RetweetOutlined, LeftCircleOutlined, RightCircleOutlined, ArrowLeftOutlined } from '@ant-design/icons';\nimport { jsxDEV as _jsxDEV, Fragment as _Fragment } from \"react/jsx-dev-runtime\";\nconst vowel = \"/i/\";\nconst word = \"seed\";\nconst Word = () => /*#__PURE__*/_jsxDEV(_Fragment, {\n  children: [/*#__PURE__*/_jsxDEV(\"div\", {\n    children: /*#__PURE__*/_jsxDEV(\"p\", {\n      children: \"Vowels you just chose to practice: /i/, /e/\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 11,\n      columnNumber: 13\n    }, this)\n  }, void 0, false, {\n    fileName: _jsxFileName,\n    lineNumber: 10,\n    columnNumber: 9\n  }, this), /*#__PURE__*/_jsxDEV(Flex, {\n    gap: \"small\",\n    style: {\n      margin: '10px'\n    },\n    children: [/*#__PURE__*/_jsxDEV(Button, {\n      icon: /*#__PURE__*/_jsxDEV(ArrowLeftOutlined, {}, void 0, false, {\n        fileName: _jsxFileName,\n        lineNumber: 14,\n        columnNumber: 27\n      }, this),\n      children: \"Back to the previous page\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 14,\n      columnNumber: 13\n    }, this), /*#__PURE__*/_jsxDEV(Button, {\n      icon: /*#__PURE__*/_jsxDEV(RetweetOutlined, {}, void 0, false, {\n        fileName: _jsxFileName,\n        lineNumber: 15,\n        columnNumber: 27\n      }, this),\n      children: \"Try a different vowel\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 15,\n      columnNumber: 13\n    }, this), /*#__PURE__*/_jsxDEV(Button, {\n      icon: /*#__PURE__*/_jsxDEV(RetweetOutlined, {}, void 0, false, {\n        fileName: _jsxFileName,\n        lineNumber: 16,\n        columnNumber: 27\n      }, this),\n      children: \"Try a different word\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 16,\n      columnNumber: 13\n    }, this)]\n  }, void 0, true, {\n    fileName: _jsxFileName,\n    lineNumber: 13,\n    columnNumber: 9\n  }, this), /*#__PURE__*/_jsxDEV(Card, {\n    title: `${word}`,\n    bordered: false,\n    style: {\n      width: 300\n    },\n    children: [/*#__PURE__*/_jsxDEV(\"p\", {\n      children: `Current vowel: ${vowel}`\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 20,\n      columnNumber: 13\n    }, this), /*#__PURE__*/_jsxDEV(\"p\", {\n      children: `Current word chain begin with: \"Seed\" `\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 21,\n      columnNumber: 13\n    }, this)]\n  }, void 0, true, {\n    fileName: _jsxFileName,\n    lineNumber: 19,\n    columnNumber: 9\n  }, this), /*#__PURE__*/_jsxDEV(Flex, {\n    gap: \"small\",\n    style: {\n      margin: '10px'\n    },\n    children: [/*#__PURE__*/_jsxDEV(Button, {\n      icon: /*#__PURE__*/_jsxDEV(LeftCircleOutlined, {}, void 0, false, {\n        fileName: _jsxFileName,\n        lineNumber: 24,\n        columnNumber: 27\n      }, this),\n      children: \"Less complex\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 24,\n      columnNumber: 13\n    }, this), /*#__PURE__*/_jsxDEV(Button, {\n      type: \"primary\",\n      icon: /*#__PURE__*/_jsxDEV(RightCircleOutlined, {}, void 0, false, {\n        fileName: _jsxFileName,\n        lineNumber: 25,\n        columnNumber: 42\n      }, this),\n      children: \"More complex\"\n    }, void 0, false, {\n      fileName: _jsxFileName,\n      lineNumber: 25,\n      columnNumber: 13\n    }, this)]\n  }, void 0, true, {\n    fileName: _jsxFileName,\n    lineNumber: 23,\n    columnNumber: 9\n  }, this)]\n}, void 0, true);\n_c = Word;\nexport default Word;\nvar _c;\n$RefreshReg$(_c, \"Word\");","map":{"version":3,"names":["React","Card","Button","Flex","RetweetOutlined","LeftCircleOutlined","RightCircleOutlined","ArrowLeftOutlined","jsxDEV","_jsxDEV","Fragment","_Fragment","vowel","word","Word","children","fileName","_jsxFileName","lineNumber","columnNumber","gap","style","margin","icon","title","bordered","width","type","_c","$RefreshReg$"],"sources":["D:/Project/UC_Trains_Voice/react-demo/src/gavt/Word.tsx"],"sourcesContent":["import React from 'react';\r\nimport { Card, Button, Flex } from 'antd';\r\nimport { RetweetOutlined, LeftCircleOutlined, RightCircleOutlined, ArrowLeftOutlined } from '@ant-design/icons';\r\n\r\nconst vowel=\"/i/\";\r\nconst word=\"seed\";\r\n\r\nconst Word: React.FC = () => (\r\n    <>\r\n        <div>\r\n            <p>Vowels you just chose to practice: /i/, /e/</p>\r\n        </div>\r\n        <Flex gap=\"small\" style={{margin:'10px'}}>\r\n            <Button icon={<ArrowLeftOutlined />}>Back to the previous page</Button> \r\n            <Button icon={<RetweetOutlined />}>Try a different vowel</Button>\r\n            <Button icon={<RetweetOutlined />}>Try a different word</Button>\r\n        </Flex>\r\n    \r\n        <Card title={`${word}`} bordered={false} style={{ width: 300 }}>\r\n            <p>{`Current vowel: ${vowel}`}</p>\r\n            <p>{`Current word chain begin with: \"Seed\" `}</p>\r\n        </Card>\r\n        <Flex gap=\"small\" style={{margin:'10px'}}>\r\n            <Button icon={<LeftCircleOutlined />}>Less complex</Button>\r\n            <Button type=\"primary\" icon={<RightCircleOutlined />}>More complex</Button>\r\n        </Flex>\r\n    </>\r\n\r\n\r\n);\r\n\r\nexport default Word;"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}