generated from lucien/actix-react-template
10 lines
No EOL
211 B
TypeScript
10 lines
No EOL
211 B
TypeScript
//import { useState } from "react";
|
|
|
|
export default function MonInput({text, new_focus}) {
|
|
|
|
return (
|
|
<div>
|
|
<input readOnly value={text} onFocus={new_focus}></input>
|
|
</div>
|
|
)
|
|
} |