Fix event: layout dan event deatil Feature: Button dot, edit screen # No Issue
14 lines
273 B
TypeScript
14 lines
273 B
TypeScript
import { StackCustom, TextCustom, ViewWrapper } from "@/components";
|
|
|
|
export default function EventEdit() {
|
|
return (
|
|
<>
|
|
<ViewWrapper>
|
|
<StackCustom>
|
|
<TextCustom>Edit Event</TextCustom>
|
|
</StackCustom>
|
|
</ViewWrapper>
|
|
</>
|
|
);
|
|
}
|