node-red-contrib-chatbot
Version:
REDBot a Chat bot for a full featured chat bot for Telegram, Facebook Messenger and Slack. Almost no coding skills required
18 lines (14 loc) • 437 B
JavaScript
import React from 'react';
import { Link } from 'react-router-dom';
import ShowError from '../components/show-error';
const PageNotFound = () => {
return (
<div className="page page-not-found" style={{ paddingTop: '100px' }}>
<ShowError
title="Page not found"
error={<div>This page doesn't exist, go back to the <Link to="/">dashboard</Link></div>}
/>
</div>
);
};
export default PageNotFound;