Files
frontend-bootcamp/step1-04/final/src/App.tsx
2019-03-03 20:24:20 -08:00

12 lines
211 B
TypeScript

import React from 'react';
import { Counter } from './components/Counter';
export const App = props => {
return (
<div>
<Counter text="chickens" />
<Counter text="ducks" />
</div>
);
};