11 lines
123 B
TypeScript
11 lines
123 B
TypeScript
import React from 'react'
|
|
|
|
const Custom = () => {
|
|
return (
|
|
<div>
|
|
Custom
|
|
</div>
|
|
)
|
|
}
|
|
export default Custom
|