mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-28 16:06:41 +01:00
23 lines
438 B
TypeScript
23 lines
438 B
TypeScript
import React from "react";
|
|
import { ThemeProvider } from "@material-ui/styles";
|
|
import { createMuiTheme } from "@material-ui/core";
|
|
import Navigation from "./components/Navigation";
|
|
const theme = createMuiTheme({
|
|
spacing: 4,
|
|
palette: {
|
|
primary: {
|
|
main: "#007bff"
|
|
}
|
|
}
|
|
});
|
|
|
|
const App: React.FC = () => {
|
|
return (
|
|
<ThemeProvider theme={theme}>
|
|
<Navigation />
|
|
</ThemeProvider>
|
|
);
|
|
};
|
|
|
|
export default App;
|