second code commit

This commit is contained in:
2025-11-30 12:55:40 +05:30
parent da70e5436d
commit 5a23b94ec3
34 changed files with 0 additions and 46 deletions

13
js/App.js Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import FormPage from './components/FormPage';
function App() {
return (
<div>
<h2>Income Tax Entry Form</h2>
<FormPage table="cit" />
</div>
);
}
export default App;