Initial commit

This commit is contained in:
2025-09-18 11:33:28 +05:30
commit 602c87148d
34 changed files with 2906 additions and 0 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;