mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
12 lines
215 B
TypeScript
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;
|