This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RouteFactory from 'app/routes'; | |
export default function App() { | |
return <RouteFactory />; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useHistory, useRouteMatch } from 'react-router-dom'; | |
import { | |
StateMachineProvider, | |
createStore, | |
useStateMachine, | |
} from 'little-state-machine'; | |
import { RouteFactory, Route } from 'services/router/RouteFactory'; | |
import { useForm } from 'react-hook-form'; | |
function updateAction(state, payload) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const CracoAlias = require('craco-alias'); | |
const WebpackBar = require('webpackbar'); | |
const { getLoader, loaderByName } = require('@craco/craco'); | |
const transformBabelLoader = require('./internals/transformBabelLoader'); | |
module.exports = { | |
style: { | |
postcss: { | |
plugins: [require('tailwindcss'), require('autoprefixer')], | |
}, |
OlderNewer