mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-17 10:22:16 +01:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
import React from 'react';
|
|
|
|
function TextResultView(props : { text: string }) {
|
|
return <p>{props.text}</p>;
|
|
}
|
|
|
|
export default TextResultView; |