react-jwchat
Version:
This is an easy-to-use web chat component, based on react.
12 lines • 381 B
JavaScript
import React from 'react';
import { ContactItem } from 'react-jwchat';
import { contact } from "./displayData";
import DisplayWrapper from "./DisplayWrapper";
import { jsx as _jsx } from "react/jsx-runtime";
export default function DemoContactList() {
return /*#__PURE__*/_jsx(DisplayWrapper, {
children: /*#__PURE__*/_jsx(ContactItem, {
contact: contact
})
});
}