GregBrimble/cf-workers-dashboard

View on GitHub
packages/client/src/components/workers/Editor.tsx

Summary

Maintainability
A
30 mins
Test Coverage
import React from "react";
import { BigStatus } from "../BigStatus";

export const Editor = () => {
  return (
    <BigStatus
      icon={<path d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />}
      text="Coming soon!"
    />
  );
};