Add tiny JSX/TSX templates
This commit is contained in:
parent
ceb4c92326
commit
7fd707b558
|
@ -0,0 +1,9 @@
|
||||||
|
const ComponentTodo = ({ text }) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{text}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ComponentTodo
|
|
@ -0,0 +1,9 @@
|
||||||
|
const ComponentTodo: FC<{ text: string }> = ({ text }) => {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
{text}
|
||||||
|
</div>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ComponentTodo
|
Loading…
Reference in New Issue