12 lines
146 B
TypeScript
12 lines
146 B
TypeScript
![]() |
import React from 'react'
|
||
|
|
||
|
const ActionList = () => {
|
||
|
return (
|
||
|
<div>
|
||
|
<h1>Action List</h1>
|
||
|
</div>
|
||
|
)
|
||
|
}
|
||
|
|
||
|
export default ActionList
|