Skip to content

Automated-Coding-Tournament/webapp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Welcome to the ACT Webapp!

To start developing run 'yarn install' and then 'yarn start' in the terminal. Happy development!

Sample of restJs api helper usage:

import { useFind } from './utils';

const Component = () => {
    const { response, loading, error, find } = useFind(URL);

    find();

    if (loading) {
        // Handle loading state here
    }

    if (error) {
        // Handle error state here
    }

    return (
        <h1
        style={{
            textAlign: 'center'
        }}
        >
            RestJs
        </h1>
    );
};

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages