8 lines
148 B
TypeScript
8 lines
148 B
TypeScript
'use client'
|
|
|
|
import React from 'react'
|
|
|
|
export const AfterInput: React.FC = () => {
|
|
return <label className="after-input">#after-input</label>
|
|
}
|