diff --git a/package.json b/package.json
index 2410a99..0358b8e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@lingdocs/pashto-inflector",
- "version": "2.8.0",
+ "version": "2.8.1",
"author": "lingdocs.com",
"description": "A Pashto inflection and verb conjugation engine, inculding React components for displaying Pashto text, inflections, and conjugations",
"homepage": "https://verbs.lingdocs.com",
diff --git a/src/components/blocks/Block.tsx b/src/components/blocks/Block.tsx
new file mode 100644
index 0000000..1b668d0
--- /dev/null
+++ b/src/components/blocks/Block.tsx
@@ -0,0 +1,306 @@
+import * as T from "../../types";
+import classNames from "classnames";
+import {
+ getEnglishFromRendered,
+} from "../../lib/phrase-building/np-tools";
+
+function Block({ opts, block }: {
+ opts: T.TextOptions,
+ block: T.Block,
+}) {
+ if ("equative" in block) {
+ return
⚠️ NOTE: This means that the subject {renderedSubject.selection.e ? `(${renderedSubject.selection.e})` : ""} is the action/idea of {` `} - "{rendered.predicate.selection.e ? rendered.predicate.selection.e : "the particple"}".
+ "{renderedPredicate.selection.e ? renderedPredicate.selection.e : "the particple"}".It does not mean that the subject is doing the action, which is what the transaltion sounds like in English.
It will be fixed in like a week or two... hopefully.
+