fix: resolve correct component import path

This commit is contained in:
2026-05-18 17:24:25 +07:00
parent d6eaedffd9
commit 06344346f0
5 changed files with 238 additions and 219 deletions
+2
View File
@@ -1,3 +1,5 @@
import React from 'react';
export function BaseButton({ onClick, children, style }) {
const defaultStyle = {
padding: '10px 20px',
+3
View File
@@ -0,0 +1,3 @@
import { BaseButton } from './components/BaseButton.jsx';
export { BaseButton };