statement
This commit is contained in:
14
src/views/mission/statement/LaTextContainer.tsx
Normal file
14
src/views/mission/statement/LaTextContainer.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user