statement

This commit is contained in:
Виталий Лавшонок
2025-11-02 15:33:10 +03:00
parent 59f89d5113
commit 235b2c16bd
11 changed files with 364 additions and 499 deletions

View File

@@ -0,0 +1,14 @@
import React, { useEffect, useRef } from "react";
interface LaTextContainerProps {
content: string;
}
const LaTextContainer: React.FC<LaTextContainerProps> = ({ content }) => {
return <div>
{content}
</div>;
};
export default LaTextContainer;