subtracks/App.tsx
austinried de5b479c47 building out settings db
finally got transactions working too
2021-06-17 13:01:47 +09:00

12 lines
215 B
TypeScript

import React from 'react';
import { RecoilRoot } from 'recoil';
import SettingsView from './src/components/Settings';
const App = () => (
<RecoilRoot>
<SettingsView />
</RecoilRoot>
);
export default App;